mirror of
https://github.com/kmein/niveum
synced 2026-03-19 11:31:09 +01:00
feat: symlink synced directories to home
This commit is contained in:
@@ -13,7 +13,14 @@ in {
|
|||||||
age = "7d";
|
age = "7d";
|
||||||
path = "${config.users.users.me.home}/sync/Downloads";
|
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;
|
services.gnome.gnome-keyring.enable = true;
|
||||||
security.pam.services.lightdm.enableGnomeKeyring = true;
|
security.pam.services.lightdm.enableGnomeKeyring = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user