This commit is contained in:
zoey 2025-05-28 19:10:50 -04:00
parent 99745a7f02
commit 7972325396
Signed by: zoey
GPG key ID: 81FB9FECDD6A33E2
17 changed files with 839 additions and 869 deletions

View file

@ -15,75 +15,75 @@ in {
};
config = mkIf (cfg.enable && !pkgs.stdenv.isDarwin) {
programs.swaylock = {
enable = true;
catppuccin.enable = false;
package = pkgs.swaylock-effects;
settings = with colors; {
clock = true;
color = base.hex;
font = "Work Sans";
image = "${wallpaper}";
show-failed-attempts = false;
indicator = true;
indicator-radius = 200;
indicator-thickness = 20;
line-color = "00000000";
ring-color = "00000000";
inside-color = "00000000";
key-hl-color = "f2cdcd";
separator-color = "00000000";
text-color = text.hex;
text-caps-lock-color = "";
line-ver-color = rosewater.hex;
ring-ver-color = rosewater.hex;
inside-ver-color = base.hex;
text-ver-color = text.hex;
ring-wrong-color = teal.hex;
text-wrong-color = teal.hex;
inside-wrong-color = base.hex;
inside-clear-color = base.hex;
text-clear-color = text.hex;
ring-clear-color = lavender.hex;
line-clear-color = base.hex;
line-wrong-color = base.hex;
bs-hl-color = teal.hex;
line-uses-ring = false;
grace = 2;
grace-no-mouse = true;
grace-no-touch = true;
datestr = "%d.%m";
fade-in = "0.1";
ignore-empty-password = true;
};
programs.swaylock = {
enable = true;
catppuccin.enable = false;
package = pkgs.swaylock-effects;
settings = with colors; {
clock = true;
color = base.hex;
font = "Work Sans";
image = "${wallpaper}";
show-failed-attempts = false;
indicator = true;
indicator-radius = 200;
indicator-thickness = 20;
line-color = "00000000";
ring-color = "00000000";
inside-color = "00000000";
key-hl-color = "f2cdcd";
separator-color = "00000000";
text-color = text.hex;
text-caps-lock-color = "";
line-ver-color = rosewater.hex;
ring-ver-color = rosewater.hex;
inside-ver-color = base.hex;
text-ver-color = text.hex;
ring-wrong-color = teal.hex;
text-wrong-color = teal.hex;
inside-wrong-color = base.hex;
inside-clear-color = base.hex;
text-clear-color = text.hex;
ring-clear-color = lavender.hex;
line-clear-color = base.hex;
line-wrong-color = base.hex;
bs-hl-color = teal.hex;
line-uses-ring = false;
grace = 2;
grace-no-mouse = true;
grace-no-touch = true;
datestr = "%d.%m";
fade-in = "0.1";
ignore-empty-password = true;
};
systemd.user.services.hypridle = {
Unit = {
Description = "Idle Daemon for Hyprland";
};
Service = {
Type = "simple";
ExecStart = lib.getExe inputs.hypridle.packages.${pkgs.system}.hypridle;
Restart = "on-failure";
};
Install = {
WantedBy = ["hyprland-session.target"];
};
};
xdg.configFile."hypr/hypridle.conf".text = ''
general {
lock_cmd = ${pkgs.swaylock-effects}/bin/swaylock -fF
before_sleep_cmd = ${pkgs.swaylock-effects}/bin/swaylock -fF # command ran before sleep
ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam)
}
listener {
timeout = 300 # in seconds
on-timeout = ${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms off
on-resume = ${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms on
}
'';
};
systemd.user.services.hypridle = {
Unit = {
Description = "Idle Daemon for Hyprland";
};
Service = {
Type = "simple";
ExecStart = lib.getExe inputs.hypridle.packages.${pkgs.system}.hypridle;
Restart = "on-failure";
};
Install = {
WantedBy = ["hyprland-session.target"];
};
};
xdg.configFile."hypr/hypridle.conf".text = ''
general {
lock_cmd = ${pkgs.swaylock-effects}/bin/swaylock -fF
before_sleep_cmd = ${pkgs.swaylock-effects}/bin/swaylock -fF # command ran before sleep
ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam)
}
listener {
timeout = 300 # in seconds
on-timeout = ${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms off
on-resume = ${config.wayland.windowManager.hyprland.package}/bin/hyprctl dispatch dpms on
}
'';
};
}

View file

@ -0,0 +1,32 @@
{
lib,
config,
pkgs,
...
}:
with lib;
with lib.custom; let
cfg = config.services.wallpaper;
mkService = recursiveUpdate {
Unit.PartOf = ["graphical-session.target"];
Unit.After = ["graphical-session.target"];
Install.WantedBy = ["graphical-session.target"];
};
in {
options.services.wallpaper = with types; {
enable = mkBoolOpt false "Enable MPD (Music Player Daemon)";
};
config = mkIf (cfg.enable && !pkgs.stdenv.isDarwin) {
systemd.user.services = {
swaybg = mkService {
Unit.Description = "Wallpaper Chooser";
Service = {
ExecStart = "${getExe pkgs.swaybg} -i ${wallpaper}";
Restart = "always";
};
};
};
};
}