nix-config/packages/set-background.nix
Oliver Davies 21bbb4a32e
All checks were successful
/ check (push) Successful in 1m52s
Rename
2025-07-11 18:34:25 +01:00

11 lines
239 B
Nix

{ pkgs, writeShellApplication }:
writeShellApplication {
name = "set-background";
runtimeInputs = with pkgs; [ xwallpaper ];
text = ''
xwallpaper --zoom "''${XDG_REPOS_DIR}/personal/nix-config/wallpaper/wallpaper.jpg"
'';
}