about summary refs log tree commit diff
path: root/nixos/modules/services/backup
diff options
context:
space:
mode:
authorIvan Petkov <ivanppetkov@gmail.com>2023-11-04 16:37:57 -0700
committerJörg Thalheim <Mic92@users.noreply.github.com>2023-11-06 10:16:15 +0100
commit49f444897b1d53e7a0408449773f66f830532a61 (patch)
tree38c94b503d1f6a827ca184fb7da89b559d87ed0e /nixos/modules/services/backup
parent680d0051deb89bfd4a17f015aba06c21e1cc0d56 (diff)
syncoid: disable PrivateUsers in systemd unit
* leaving PrivateUsers=true appears to break when using zfs-2.2.0
Diffstat (limited to 'nixos/modules/services/backup')
-rw-r--r--nixos/modules/services/backup/syncoid.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/backup/syncoid.nix b/nixos/modules/services/backup/syncoid.nix
index 0f375455e7ed1..1a1df38617b55 100644
--- a/nixos/modules/services/backup/syncoid.nix
+++ b/nixos/modules/services/backup/syncoid.nix
@@ -369,7 +369,7 @@ in
               PrivateDevices = true;
               PrivateMounts = true;
               PrivateNetwork = mkDefault false;
-              PrivateUsers = true;
+              PrivateUsers = false; # Enabling this breaks on zfs-2.2.0
               ProtectClock = true;
               ProtectControlGroups = true;
               ProtectHome = true;