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 79dfb3a979
commit 0c943d8430
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
];
}