common: add profiles

I will be migrating each sub-module one by one.
This commit is contained in:
Bruno BELANYI 2024-01-03 16:51:34 +00:00
parent 61c234d932
commit 2027bb327e
2 changed files with 11 additions and 0 deletions

View file

@ -11,6 +11,10 @@ let
allowedTypesString = lib.concatStringSep ", " (builtins.map lib.escapeNixString allowedTypes);
in
{
imports = [
./profiles
];
config = {
assertions = [
{

View file

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