nixos/openvpn3: add /etc/openvpn3/configs to systemd.tmpfiles

This commit is contained in:
Petr Portnov 2024-11-05 16:41:51 +03:00
parent 7ffd9ae656
commit 3f2bbfd68b
No known key found for this signature in database
GPG Key ID: 7E8FC8F7D1BB84A3

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 ];