nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (305B)


      1 {...}: {
      2 	imports = [
      3 		./boot/.
      4 		./catppuccin/.
      5 		./desktop/.
      6 		./filesystem/.
      7 		./font/.
      8 		./hardware/.
      9 		./networking/.
     10 		./nix/.
     11 		./user/.
     12 	];
     13 
     14 	i18n.defaultLocale = "zh_CN.UTF-8";
     15 	services.xserver.xkb.layout = "cn(altgr-pinyin)";
     16 
     17 	security.sudo.enable = false;
     18 	security.sudo-rs.enable = true;
     19 }