Files
nix-config/modules/factory/wpaperd.nix
T
Weckyy702 3fa5ef2441 wpaperd+tux: Implement wallpaper switching by keybind
required using the unstable version of wpaperd
2026-06-20 04:13:28 +02:00

10 lines
184 B
Nix

{
config.flake.factory.wpaperd = config: { pkgs, ... }: {
services.wpaperd = {
enable = true;
settings = config;
package = pkgs.unstable.wpaperd;
};
};
}