This commit is contained in:
Luj 2023-11-19 22:54:55 +01:00
parent 05914c96ca
commit e32c5a5545
Signed by: luj
GPG key ID: 6FC74C847011FD83
5 changed files with 502 additions and 7 deletions

View file

@ -14,7 +14,7 @@ with lib;
lib.mapAttrs
(name: value:
{
imports = with builtins; (map (x: ../../home-manager-modules + "/${x}/default.nix") (attrNames (readDir ../../home-manager-modules)));
imports = with builtins; (map (x: ../../home-manager-modules + "/${x}/default.nix") (attrNames (readDir ../../home-manager-modules))) ++ [ inputs.nix-doom-emacs.hmModule ];
home.username = "${name}";
home.homeDirectory = "/home/${name}";
home.stateVersion = "21.05";