diff --git a/flake.nix b/flake.nix index 8f55618..f54c252 100644 --- a/flake.nix +++ b/flake.nix @@ -60,6 +60,8 @@ } # Include generic settings ./modules + # Include bundles of settings + ./profiles # Include my secrets ./secrets # Include my services diff --git a/profiles/default.nix b/profiles/default.nix new file mode 100644 index 0000000..d726f32 --- /dev/null +++ b/profiles/default.nix @@ -0,0 +1,7 @@ +# Configuration that spans accross system and home, or are almagations of modules +{ ... }: +{ + imports = [ + # FIXME + ]; +}