Second test
This commit is contained in:
parent
1d0209fac3
commit
bb0e1d7591
4 changed files with 14 additions and 12 deletions
|
|
@ -4,7 +4,7 @@
|
|||
./hardware
|
||||
./network
|
||||
./terminal
|
||||
( if !headless then ./wm else ./empty.nix )
|
||||
./wm
|
||||
./users
|
||||
./boot
|
||||
./base
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
headless,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkEnableOption mkIf mkOption types;
|
||||
|
|
@ -33,8 +34,8 @@ in {
|
|||
konsole
|
||||
];
|
||||
|
||||
home-manager.users.${homeCfg.username} = {
|
||||
home-manager.users.${homeCfg.username} = lib.mkIf (!headless) {
|
||||
imports = [./config.nix];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue