nixos/openvpn3: add /etc/openvpn3/configs to systemd.tmpfiles (#353832)

This commit is contained in:
Weijia Wang 2024-11-10 13:00:09 +01:00 committed by GitHub
commit 5b916fd897
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -101,7 +101,12 @@ in {
};
};
systemd.packages = [ cfg.package ];
systemd = {
packages = [ cfg.package ];
tmpfiles.rules = [
"d /etc/openvpn3/configs 0750 openvpn openvpn - -"
];
};
};
meta.maintainers = with lib.maintainers; [ shamilton progrm_jarvis ];