From 9c9395169482a053d34f0de3a7763c3f1a9779bf Mon Sep 17 00:00:00 2001 From: twoneis Date: Sat, 7 Sep 2024 15:41:04 +0200 Subject: [PATCH] fix clean-download service --- modules/apps/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/apps/default.nix b/modules/apps/default.nix index 026a887..6077c14 100644 --- a/modules/apps/default.nix +++ b/modules/apps/default.nix @@ -45,7 +45,7 @@ in { services."clean-download" = { script = '' - ${pkgs.coreutils}/bin/rm -rf /home/user/${conf.username}/Downloads/* + ${pkgs.coreutils}/bin/rm -rf /home/${conf.username}/Downloads/* ''; serviceConfig = { Type = "oneshot";