From d578167e42ba4da58511f687c8633059668ec503 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Tue, 18 Nov 2025 10:47:46 +0100 Subject: [PATCH] feat: adds `hyprlock` and `hyprsunset` --- modules/home/hyprland/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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 ]; }