Second test

This commit is contained in:
KoenDR06 2025-02-27 22:51:50 +01:00
parent 1d0209fac3
commit bb0e1d7591
4 changed files with 14 additions and 12 deletions

View file

@ -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];
};
};
};
}