Switch how this works again
This commit is contained in:
parent
bcdafb7994
commit
b0bd0f05a0
|
@ -24,8 +24,8 @@
|
|||
(import ./module.nix { inherit doom-emacs niten-doom-config; })
|
||||
];
|
||||
};
|
||||
mkHomeManagerConfiguration = { username, user-email, home-dir, enable-gui, ... }: import ./niten.nix {
|
||||
inherit username user-email home-dir enable-gui doom-emacs niten-doom-config;
|
||||
mkHomeManagerConfiguration = { username, user-email, home-dir, enable-gui, pkgs, ... }: import ./niten.nix {
|
||||
inherit username user-email home-dir enable-gui doom-emacs niten-doom-config pkgs;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -38,15 +38,17 @@ in {
|
|||
user-email = if (user-cfg.email != null) then
|
||||
user-cfg.email else "${username}@${config.instance.local-domain}";
|
||||
home-dir = config.users.users.${username}.home;
|
||||
in ((import user-configs.${username} {
|
||||
in (import user-configs.${username} {
|
||||
inherit
|
||||
doom-emacs
|
||||
niten-doom-config
|
||||
username
|
||||
user-email
|
||||
home-dir
|
||||
enable-gui;
|
||||
}) { inherit config, lib, pgks, ...});
|
||||
enable-gui
|
||||
lib,
|
||||
pkgs;
|
||||
});
|
||||
in mapAttrs generate-config local-users;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue