common: add profiles
I will be migrating each sub-module one by one.
This commit is contained in:
parent
61c234d932
commit
2027bb327e
|
@ -11,6 +11,10 @@ let
|
||||||
allowedTypesString = lib.concatStringSep ", " (builtins.map lib.escapeNixString allowedTypes);
|
allowedTypesString = lib.concatStringSep ", " (builtins.map lib.escapeNixString allowedTypes);
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./profiles
|
||||||
|
];
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
assertions = [
|
assertions = [
|
||||||
{
|
{
|
||||||
|
|
7
modules/common/profiles/default.nix
Normal file
7
modules/common/profiles/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# Configuration that spans accross system and home, or are almagations of modules
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
# FIXME: empty
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue