summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/video
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2024-01-26 10:47:18 +0100
committerGitHub <noreply@github.com>2024-01-26 10:47:18 +0100
commitda25b2382decfe23df6a4b8e284f524c6baec78f (patch)
tree258f99c4f322eca79f1e85b6be6a0881a8039b5e /nixos/modules/services/video
parent4c2c00adb9e03df33bccd6609b42cbf34ce5f09b (diff)
parentf5d513c5738e630bb053f897b789801bff078ec9 (diff)
Merge pull request #280373 from h7x4/treewide-use-new-tmpfiles-api
treewide: use new tmpfiles API
Diffstat (limited to 'nixos/modules/services/video')
-rw-r--r--nixos/modules/services/video/epgstation/default.nix30
-rw-r--r--nixos/modules/services/video/mirakurun.nix7
2 files changed, 23 insertions, 14 deletions
diff --git a/nixos/modules/services/video/epgstation/default.nix b/nixos/modules/services/video/epgstation/default.nix
index a7468e7cc2b6..1b3258c3df8e 100644
--- a/nixos/modules/services/video/epgstation/default.nix
+++ b/nixos/modules/services/video/epgstation/default.nix
@@ -309,17 +309,25 @@ in
(lib.mkIf cfg.usePreconfiguredStreaming streamingConfig)
];
- systemd.tmpfiles.rules = [
- "d '/var/lib/epgstation/key' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/streamfiles' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/drop' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/recorded' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/thumbnail' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/db/subscribers' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/db/migrations/mysql' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/db/migrations/postgres' - ${username} ${groupname} - -"
- "d '/var/lib/epgstation/db/migrations/sqlite' - ${username} ${groupname} - -"
- ];
+ systemd.tmpfiles.settings."10-epgstation" =
+ lib.listToAttrs
+ (map (dir: lib.nameValuePair dir {
+ d = {
+ user = username;
+ group = groupname;
+ };
+ })
+ [
+ "/var/lib/epgstation/key"
+ "/var/lib/epgstation/streamfiles"
+ "/var/lib/epgstation/drop"
+ "/var/lib/epgstation/recorded"
+ "/var/lib/epgstation/thumbnail"
+ "/var/lib/epgstation/db/subscribers"
+ "/var/lib/epgstation/db/migrations/mysql"
+ "/var/lib/epgstation/db/migrations/postgres"
+ "/var/lib/epgstation/db/migrations/sqlite"
+ ]);
systemd.services.epgstation = {
inherit description;
diff --git a/nixos/modules/services/video/mirakurun.nix b/nixos/modules/services/video/mirakurun.nix
index 31f90650ba9a..208b34ab353a 100644
--- a/nixos/modules/services/video/mirakurun.nix
+++ b/nixos/modules/services/video/mirakurun.nix
@@ -165,9 +165,10 @@ in
port = mkIf (cfg.port != null) cfg.port;
};
- systemd.tmpfiles.rules = [
- "d '/etc/mirakurun' - ${username} ${groupname} - -"
- ];
+ systemd.tmpfiles.settings."10-mirakurun"."/etc/mirakurun".d = {
+ user = username;
+ group = groupname;
+ };
systemd.services.mirakurun = {
description = mirakurun.meta.description;