diff --git a/modules/common/default.nix b/modules/common/default.nix index c170939..fff2cf5 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -11,6 +11,10 @@ let allowedClassString = lib.concatStringSep ", " (builtins.map lib.escapeNixString allowedClass); in { + imports = [ + ./profiles + ]; + config = { assertions = [ { diff --git a/modules/common/profiles/default.nix b/modules/common/profiles/default.nix new file mode 100644 index 0000000..bb0f12b --- /dev/null +++ b/modules/common/profiles/default.nix @@ -0,0 +1,7 @@ +# Configuration that spans across system and home, or are almagations of modules +{ ... }: +{ + imports = [ + # FIXME: empty + ]; +}