misc cleanup

This commit is contained in:
iofq 2026-01-18 12:53:24 -06:00
parent 1943a3c679
commit cabf5f52e1
7 changed files with 111 additions and 52 deletions

View file

@ -2,7 +2,8 @@
pkgs,
config,
...
}: {
}:
{
imports = [
./alacritty
./hyprland
@ -37,16 +38,10 @@
};
swayidle = {
enable = true;
events = [
{
event = "before-sleep";
command = "${config.programs.swaylock.package}/bin/swaylock";
}
{
event = "lock";
command = "${config.programs.swaylock.package}/bin/swaylock";
}
];
events = {
"before-sleep" = "${config.programs.swaylock.package}/bin/swaylock";
"lock" = "${config.programs.swaylock.package}/bin/swaylock";
};
};
mako.enable = true;
mako.settings = {
@ -69,11 +64,9 @@
};
swaylock = {
enable = true;
package = pkgs.swaylock-effects;
settings = {
color = "#152528";
image = "/home/pape";
daemonize = true;
clock = true;
ignore-empty-password = true;
};
};