Regenerated

This commit is contained in:
2026-03-29 14:31:45 +00:00
parent e3b337f4e0
commit b14bb7f1d3
3 changed files with 303 additions and 294 deletions
@@ -7,7 +7,7 @@ let
wallpaperDst = "${homeDir}/Wallpapers";
in
{
environment.systemPackages = with pkgs; [ bash rsync ];
environment.systemPackages = with pkgs; [ bash coreutils ];
systemd.user.services.copyWallpapers = {
description = "Copy wallpapers from repo to ~/Wallpapers";
@@ -17,7 +17,10 @@ in
serviceConfig.Type = "oneshot";
serviceConfig.ExecStart = ''
${pkgs.bash}/bin/bash -c "mkdir -p '${wallpaperDst}'; ${pkgs.rsync}/bin/rsync -av '${wallpaperSrc}/' '${wallpaperDst}/'"
${pkgs.bash}/bin/bash -c "
mkdir -p '${wallpaperDst}'
cp -r '${wallpaperSrc}/.' '${wallpaperDst}/'
"
'';
serviceConfig.Restart = "no";