feat: import hyprland modules

This commit is contained in:
Luj 2023-04-01 13:23:44 +02:00
parent 91acaff63e
commit d5c4b7a1b5
Signed by: luj
GPG key ID: 6FC74C847011FD83
5 changed files with 118 additions and 9 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.hyprland.homeManagerModules.default ];
home.username = "${name}";
home.homeDirectory = "/home/${name}";
home.stateVersion = "21.05";