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

feat: symlink synced directories to home

This commit is contained in:
2024-04-28 13:25:24 +02:00
parent 91aa4aeb3e
commit e3a18282c1

View File

@@ -13,7 +13,14 @@ in {
age = "7d";
path = "${config.users.users.me.home}/sync/Downloads";
}
];
] ++ map (path: tmpfilesConfig {
type = "L+";
user = config.users.users.me.name;
group = config.users.users.me.group;
mode = "0755";
argument = "${config.users.users.me.home}/sync/${path}";
path = "${config.users.users.me.home}/${path}";
}) [".ssh" ".gnupg" ".pki" ".local/share/aerc"];
services.gnome.gnome-keyring.enable = true;
security.pam.services.lightdm.enableGnomeKeyring = true;