My NixOS configuration.
at master 34 lines 852 B view raw view rendered
1# nixos config 2 3Hello to all, this is my NixOS config! 4 5File structure: 6```txt 7. 8├── flake.lock 9├── flake.nix 10├── hm-modules 11│   ├── default.nix 12│   └── rices 13│   ├── default.nix 14│   └── eva 15│   ├── default.nix 16│   ├── eva.nix 17│   └── mods 18├── hosts 19│   └── fw13 20│   ├── configuration.nix 21│   ├── hardware-configuration.nix 22│   └── home.nix 23├── LICENSE 24├── nixos-modules 25│   ├── default.nix 26│   └── default-wm 27│   └── sway.nix 28└── README.md 29 309 directories, 13 files 31``` 32 33My `hosts/` folder manages configurations per machine. Then `hm-modules/rices` 34has a per-rice configuration I can enable/disable through home manager.