fixes + dunst config stuff

This commit is contained in:
2025-02-20 10:08:10 -05:00
parent 5cb473d279
commit 20c47da380
12 changed files with 115 additions and 73 deletions

View File

@@ -1,6 +1,7 @@
{
config,
pkgs,
lib,
...
}:
{
@@ -47,7 +48,7 @@
spawn-at-startup = [
{
command = [
"${config.programs.eww.package}/bin/eww"
"${lib.getExe config.programs.eww.package}"
"-c"
"${config.programs.eww.configDir}"
"open"
@@ -58,7 +59,7 @@
# swaybg works on more than just sway (sets a wallpaper)
{
command = [
"${pkgs.swaybg}/bin/swaybg"
"${lib.getExe pkgs.swaybg}"
"-i"
"${../wallpaper.png}"
];
@@ -67,7 +68,7 @@
# Xwayland on niri via xwayland-satellite
{
command = [
"${pkgs.xwayland-satellite}/bin/xwayland-satellite"
"${lib.getExe pkgs.xwayland-satellite}"
config.programs.niri.settings.environment.DISPLAY
];
}