nixos: profiles: move from top-level
ci/woodpecker/push/check Pipeline was successful Details

My profiles are actually just "special" NixOS modules in that they
orchestrate settings that usually span the NixOS/home-manager boundary,
or otherwise set up configurations from multiple modules at once.
This commit is contained in:
Bruno BELANYI 2023-11-09 13:47:30 +00:00
parent 65a8f7c481
commit 570349e80f
9 changed files with 1 additions and 2 deletions

View File

@ -14,8 +14,6 @@ let
}
# Include generic settings
"${self}/modules/nixos"
# Include bundles of settings
"${self}/profiles"
];
buildHost = name: system: lib.nixosSystem {

View File

@ -5,6 +5,7 @@
imports = [
./hardware
./home
./profiles
./programs
./secrets
./services