make more nixy

This commit is contained in:
Simon Gardling 2025-02-05 19:30:40 -05:00
parent b5ae17bf36
commit 69297e60af
Signed by: titaniumtown
GPG Key ID: 9AB28AC10ECE533D
4 changed files with 23 additions and 21 deletions

View File

@ -126,9 +126,6 @@
(label :text "${EWW_BATTERY.BAT1.capacity}%" :class "yellow")))
(defpoll volumevalue :interval "1s" `scripts/sound/getVolume.sh`)
(defpoll volumesink :interval "1s" `scripts/sound/getSink.sh`)

View File

@ -7,36 +7,44 @@ in
enable = true;
settings = {
color = "24273a";
ring-color = "b7bdf8";
bs-hl-color = "f4dbd6";
caps-lock-bs-hl-color = "f4dbd6";
text-clear-color = "f4dbd6";
ring-clear-color = "f4dbd6";
text-caps-lock-color = "f5a97f";
ring-caps-lock-color = "f5a97f";
ring-ver-color = "8aadf4";
text-ver-color = "8aadf4";
ring-wrong-color = "ee99a0";
text-wrong-color = "ee99a0";
layout-text-color = "cad3f5";
text-color = "cad3f5";
caps-lock-key-hl-color = "a6da95";
key-hl-color = "a6da95";
inside-color = 0;
inside-clear-color = 0;
inside-caps-lock-color = 0;
inside-ver-color = 0;
inside-wrong-color = 0;
key-hl-color = "a6da95";
layout-bg-color = 0;
layout-border-color = 0;
layout-text-color = "cad3f5";
line-color = 0;
line-clear-color = 0;
line-caps-lock-color = 0;
line-ver-color = 0;
line-wrong-color = 0;
ring-color = "b7bdf8";
ring-clear-color = "f4dbd6";
ring-caps-lock-color = "f5a97f";
ring-ver-color = "8aadf4";
ring-wrong-color = "ee99a0";
separator-color = 0;
text-color = "cad3f5";
text-clear-color = "f4dbd6";
text-caps-lock-color = "f5a97f";
text-ver-color = "8aadf4";
text-wrong-color = "ee99a0";
# image = builtins.toString ../wallpaper_blurred.png;
image = "${(blur { src = ../wallpaper.png; })}/output.png";
image = builtins.toString (blur {
src = ../wallpaper.png;
});
};
};
}

View File

@ -26,8 +26,6 @@
# used by /etc/nixos logic to launch niri
config.programs.niri.package
xwayland-satellite-unstable
];
# media controls

View File

@ -20,7 +20,6 @@ stdenv.mkDerivation {
'';
installPhase = ''
mkdir -p $out
mv output.png $out/
mv output.png $out
'';
}