This commit is contained in:
SebastianStork 2025-06-13 16:54:03 +02:00
parent e285ab3183
commit 9fb4a18ee5
11 changed files with 22 additions and 44 deletions

View file

@ -1,7 +1,7 @@
{
config,
self,
inputs,
self,
pkgs,
pkgs-unstable,
lib,
@ -18,7 +18,7 @@ in
zsh.enable = lib.mkEnableOption "";
homeManager = {
enable = lib.mkEnableOption "";
configPath = lib.mkOption {
configPaths = lib.mkOption {
type = lib.types.listOf lib.types.path;
default = [
"${self}/users/shared-home.nix"
@ -53,7 +53,7 @@ in
inherit inputs self pkgs-unstable;
};
users.seb.imports = cfg.homeManager.configPath;
users.seb.imports = cfg.homeManager.configPaths;
};
})
]