NixOS configuration 馃獎
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}