Regenerated

This commit is contained in:
2026-03-29 14:27:20 +00:00
parent a31bfc97a0
commit dd0e16999e
3 changed files with 309 additions and 294 deletions
@@ -7,7 +7,7 @@ let
wallpaperDst = "${homeDir}/Wallpapers";
in
{
environment.systemPackages = with pkgs; [ rsync bash ];
environment.systemPackages = with pkgs; [ bash rsync ];
systemd.user.services.copyWallpapers = {
description = "Copy wallpapers from repo to ~/Wallpapers";
@@ -16,7 +16,12 @@ in
serviceConfig.Type = "oneshot";
serviceConfig.ExecStart = "${pkgs.bash}/bin/bash -c 'mkdir -p \"${wallpaperDst}\" && rsync -av \"${wallpaperSrc}/\" \"${wallpaperDst}/\"'";
serviceConfig.ExecStart = ''
${pkgs.bash}/bin/bash -c '
mkdir -p "${wallpaperDst}"
${pkgs.rsync}/bin/rsync -av "${wallpaperSrc}/" "${wallpaperDst}/"
''
'';
serviceConfig.Restart = "no";
};