diff --git a/configs/cloud.nix b/configs/cloud.nix index f1560a9..afe776b 100644 --- a/configs/cloud.nix +++ b/configs/cloud.nix @@ -6,7 +6,13 @@ }: let inherit (import ../lib) tmpfilesConfig; in { - systemd.tmpfiles.rules = map tmpfilesConfig [ + systemd.user.tmpfiles.users.me.rules = map tmpfilesConfig [ + { + type = "d"; + mode = "0755"; + age = "7d"; + path = "${config.users.users.me.home}/sync/Downloads"; + } ]; services.gnome.gnome-keyring.enable = true;