My Nix Configuration

[nixosConfig.defaultConfig] Remove unused stuff(based on perlless/bashless)

+9
+3
nixosModules/default-config/bootloader.nix
··· 67 67 # Should hardon and improve performance 68 68 "page_alloc.shuffle=1" 69 69 ]; 70 + # Don't use either of these so disable them 71 + kexec.enable = false; 72 + bcache.enable = false; 70 73 }; 71 74 }
+6
nixosModules/default-config/services/default.nix
··· 3 3 ./ntp.nix 4 4 ./tailscale.nix 5 5 ]; 6 + services = { 7 + # Perlless user management 8 + userborn = { 9 + enable = true; 10 + }; 11 + }; 6 12 }