flake: add profiles folder

This will be used for configurations that either consolidates multiple options
that make sens to use together, or span accross system and home configuration.
This commit is contained in:
Bruno BELANYI 2021-05-09 11:30:49 +02:00
parent 104a7a8d46
commit d2c9b72eb6
2 changed files with 9 additions and 0 deletions

View File

@ -60,6 +60,8 @@
}
# Include generic settings
./modules
# Include bundles of settings
./profiles
# Include my secrets
./secrets
# Include my services

7
profiles/default.nix Normal file
View File

@ -0,0 +1,7 @@
# Configuration that spans accross system and home, or are almagations of modules
{ ... }:
{
imports = [
# FIXME
];
}