NixOS configuration 馃獎
at refactor/style 14 lines 491 B view raw
1{ 2 imports = [ 3 ./hardware # hardware configuration (e.g gpu, cpu, networking, etc.) 4 ./nix # specific configuration for the nix environment 5 ./environment # environment variables and configurations (e.g fonts, time etc.) 6 ./security # security thingies 7 ./system # configuration for our system 8 ./services 9 10 ./style.nix 11 ./users.nix # load and create users 12 ./extraPackages.nix # packages that need to be loaded but are not big enough to be an own module 13 ]; 14}