hyprsunset

This commit is contained in:
2025-06-21 12:32:11 +02:00
parent 6eaa1f6835
commit 34c79edf41
4 changed files with 22 additions and 0 deletions

View File

@ -38,6 +38,7 @@
./home/nextcloud.nix # Nextcloud autostart
./home/code-cursor.nix # Cursor config
./home/vim.nix # Vim config
./home/hyprsunset.nix # Hyprsunset night mode
];
};

View File

@ -101,6 +101,7 @@
hyprpaper # Wallpaper daemon
hyprlock # Screen lock utility
hyprpicker # Color picker
hyprsunset # Night mode
# ---- CLIPBOARD & INPUT ----
wl-clipboard # Clipboard utilities for Wayland

View File

@ -8,6 +8,7 @@ in {
exec-once = [
"hyprpaper"
"hypridle"
"hyprsunset"
"hyprctl setcursor capitaine-cursors-white 28" # Set mouse cursor
"wl-paste --type text --watch cliphist store" # Stores only text data
"wl-paste --type image --watch cliphist store" # Stores only image data

View File

@ -0,0 +1,19 @@
{
services.hyprsunset = {
enable = true;
transitions = {
sunrise = {
calendar = "*-*-* 06:00:00";
requests = [
["identity"]
];
};
sunset = {
calendar = "*-*-* 20:00:00";
requests = [
["temperature" "3000"]
];
};
};
};
}