1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat: keep downloaded files for 7 days

This commit is contained in:
2024-04-07 14:44:30 +02:00
parent 3c2a66f990
commit 35a91d755a

View File

@@ -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;