Rename
All checks were successful
/ check (push) Successful in 1m52s

This commit is contained in:
Oliver Davies 2025-07-11 18:31:19 +01:00
parent adfe90c99b
commit 21bbb4a32e
4 changed files with 4 additions and 4 deletions

View file

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