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
+293 -290
View File
File diff suppressed because it is too large Load Diff
+5 -2
View File
@@ -2367,7 +2367,7 @@ let
wallpaperDst = "${homeDir}/Wallpapers"; wallpaperDst = "${homeDir}/Wallpapers";
in in
{ {
environment.systemPackages = with pkgs; [ bash rsync ]; environment.systemPackages = with pkgs; [ bash coreutils ];
systemd.user.services.copyWallpapers = { systemd.user.services.copyWallpapers = {
description = "Copy wallpapers from repo to ~/Wallpapers"; description = "Copy wallpapers from repo to ~/Wallpapers";
@@ -2377,7 +2377,10 @@ in
serviceConfig.Type = "oneshot"; serviceConfig.Type = "oneshot";
serviceConfig.ExecStart = '' 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"; serviceConfig.Restart = "no";
@@ -7,7 +7,7 @@ let
wallpaperDst = "${homeDir}/Wallpapers"; wallpaperDst = "${homeDir}/Wallpapers";
in in
{ {
environment.systemPackages = with pkgs; [ bash rsync ]; environment.systemPackages = with pkgs; [ bash coreutils ];
systemd.user.services.copyWallpapers = { systemd.user.services.copyWallpapers = {
description = "Copy wallpapers from repo to ~/Wallpapers"; description = "Copy wallpapers from repo to ~/Wallpapers";
@@ -17,7 +17,10 @@ in
serviceConfig.Type = "oneshot"; serviceConfig.Type = "oneshot";
serviceConfig.ExecStart = '' 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"; serviceConfig.Restart = "no";