NixOS configuration 馃獎
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5 18 lines 601 B view raw
1{ inputs, ... }: { 2 imports = [ 3 # General module imports 4 inputs.tgirlpkgs.nixosModules.default 5 6 # Modules import 7 ./hardware # hardware configuration (e.g gpu, cpu, networking, etc.) 8 ./nix # specific configuration for the nix environment 9 ./environment # environment variables and configurations (e.g fonts, time etc.) 10 ./security # security thingies 11 ./system # configuration for our system 12 ./services 13 14 ./style.nix 15 ./users.nix # load and create users 16 ./extraPackages.nix # packages that need to be loaded but are not big enough to be an own module 17 ]; 18}