From 1b31dfa8d50e1caf6c6b255c7acaa963db27773b Mon Sep 17 00:00:00 2001 From: Uzair Mohammed Date: Fri, 27 Dec 2024 23:34:47 -0800 Subject: [PATCH] 1: Added wlsunset and replaced rofi with walker --- home/modules/hyprland.nix | 3 ++- home/modules/wlsunset.nix | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 home/modules/wlsunset.nix diff --git a/home/modules/hyprland.nix b/home/modules/hyprland.nix index d1c478c..d908621 100644 --- a/home/modules/hyprland.nix +++ b/home/modules/hyprland.nix @@ -11,6 +11,7 @@ ./rofi.nix ./cliphist.nix ./wlogout.nix + ./wlsunset ]; programs.kitty.enable = true; @@ -34,7 +35,7 @@ bind = [ "$mod, Return, exec, kitty" - "$mod, SPACE, exec, rofi -show run" + "$mod, SPACE, exec, walker" "$mod, E, exec, dolphin" "$mod SHIFT, V, togglefloating," diff --git a/home/modules/wlsunset.nix b/home/modules/wlsunset.nix new file mode 100644 index 0000000..9ab9cb9 --- /dev/null +++ b/home/modules/wlsunset.nix @@ -0,0 +1,7 @@ +{ + services.wlsunset = { + enable = true; + latitude = 39; + longitude = -121.2; + }; +}