common: add profiles
I will be migrating each sub-module one by one.
This commit is contained in:
parent
27a486bf5c
commit
033b0e8a57
2 changed files with 11 additions and 0 deletions
|
|
@ -11,6 +11,10 @@ let
|
||||||
allowedClassString = lib.concatStringSep ", " (builtins.map lib.escapeNixString allowedClass);
|
allowedClassString = lib.concatStringSep ", " (builtins.map lib.escapeNixString allowedClass);
|
||||||
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 across system and home, or are almagations of modules
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
# FIXME: empty
|
||||||
|
];
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue