Use default value instead of passing for wallpaper

This commit is contained in:
Natsu Kagami 2025-01-15 21:49:55 +01:00
parent 0a0e396ddf
commit 79c213bd64
Signed by: nki
GPG key ID: 55A032EB38B49ADB
2 changed files with 1 additions and 4 deletions

View file

@ -119,9 +119,6 @@ with lib;
# settings.experimental.per_monitor_dpi = "true";
# };
# Forward wallpaper settings to sway
programs.my-sway.wallpaper = config.linux.graphical.wallpaper;
};
}

View file

@ -63,7 +63,7 @@ in
wallpaper = mkOption {
type = types.oneOf [ types.path types.str ];
description = "Path to the wallpaper to be used";
default = "";
default = config.linux.graphical.wallpaper;
};
terminal = mkOption {
type = types.str;