[NixOS] Try to fix syncthings priveleges issues

This commit is contained in:
2023-08-05 19:31:34 -06:00
parent 7fc65965c5
commit f289424c26
3 changed files with 5 additions and 2 deletions

View File

@@ -37,7 +37,7 @@
];
in {
syncthing = {
extraGroups = [ "syncthing" ];
extraGroups = [ "syncthing" "wheel" ];
home = "/var/lib/syncthing";
createHome = true;
};
@@ -67,5 +67,5 @@
};
};
nix.settings.trusted-users = [ "root" "imalison" "kat" "dean" ];
nix.settings.trusted-users = [ "root" "imalison" "kat" "dean" "alex" ];
}