Use default value instead of passing for wallpaper
This commit is contained in:
parent
0a0e396ddf
commit
79c213bd64
|
@ -119,9 +119,6 @@ with lib;
|
||||||
|
|
||||||
# settings.experimental.per_monitor_dpi = "true";
|
# settings.experimental.per_monitor_dpi = "true";
|
||||||
# };
|
# };
|
||||||
|
|
||||||
# Forward wallpaper settings to sway
|
|
||||||
programs.my-sway.wallpaper = config.linux.graphical.wallpaper;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ in
|
||||||
wallpaper = mkOption {
|
wallpaper = mkOption {
|
||||||
type = types.oneOf [ types.path types.str ];
|
type = types.oneOf [ types.path types.str ];
|
||||||
description = "Path to the wallpaper to be used";
|
description = "Path to the wallpaper to be used";
|
||||||
default = "";
|
default = config.linux.graphical.wallpaper;
|
||||||
};
|
};
|
||||||
terminal = mkOption {
|
terminal = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
|
|
Loading…
Reference in a new issue