diff --git a/modules/home/hyprland/default.nix b/modules/home/hyprland/default.nix index 500dd39..5497e22 100644 --- a/modules/home/hyprland/default.nix +++ b/modules/home/hyprland/default.nix @@ -1,9 +1,11 @@ -{ inputs, ... }: +{ inputs, ... }: { - imports = [ (import ./hyprland.nix) ] + imports = + [ (import ./hyprland.nix) ] ++ [ (import ./config.nix) ] ++ [ (import ./scripts.nix) ] ++ [ (import ./variables.nix) ] - # ++ [ (import ./hyprlock.nix) ] + ++ [ (import ./../hyprsunset.nix) ] + ++ [ (import ./../hyprlock.nix) ] ++ [ inputs.hyprland.homeManagerModules.default ]; }