treewide: use new tmpfiles api

This commit is contained in:
h7x4 2024-01-11 22:10:18 +01:00
commit f5d513c573
No known key found for this signature in database
GPG key ID: 9F2F7D8250F35146
30 changed files with 207 additions and 129 deletions

View file

@ -395,11 +395,11 @@ in
};
};
systemd.tmpfiles.rules = [
"d /var/log/jitsi/jibri 755 jibri jibri"
];
systemd.tmpfiles.settings."10-jibri"."/var/log/jitsi/jibri".d = {
user = "jibri";
group = "jibri";
mode = "755";
};
# Configure Chromium to not show the "Chrome is being controlled by automatic test software" message.
environment.etc."chromium/policies/managed/managed_policies.json".text = builtins.toJSON { CommandLineFlagSecurityWarningsEnabled = false; };