about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorPeder Bergebakken Sundt <pbsds@hotmail.com>2024-04-18 02:01:35 +0200
committerGitHub <noreply@github.com>2024-04-18 02:01:35 +0200
commit3f1bb546b5eb45359d708aa93df420be25b6a28b (patch)
treed52afb9b33026170b56f7fe2e1b0d0d9b7835045 /nixos/tests
parentb34f37719e945c41c84da75873799da29e0c9a36 (diff)
parentef95bc2eaf38e020efb8961ef60a95be2469cc35 (diff)
Merge pull request #299762 from autrimpo/gonic-0.16.3
gonic: 0.15.2 -> 0.16.4
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/gonic.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/nixos/tests/gonic.nix b/nixos/tests/gonic.nix
index 726d7da0970f7..adf0f511a9cf7 100644
--- a/nixos/tests/gonic.nix
+++ b/nixos/tests/gonic.nix
@@ -2,11 +2,19 @@ import ./make-test-python.nix ({ pkgs, ... }: {
   name = "gonic";
 
   nodes.machine = { ... }: {
+    systemd.tmpfiles.settings = {
+      "10-gonic" = {
+        "/tmp/music"."d" = {};
+        "/tmp/podcast"."d" = {};
+        "/tmp/playlists"."d" = {};
+      };
+    };
     services.gonic = {
       enable = true;
       settings = {
-        music-path = [ "/tmp" ];
-        podcast-path = "/tmp";
+        music-path = [ "/tmp/music" ];
+        podcast-path = "/tmp/podcast";
+        playlists-path = "/tmp/playlists";
       };
     };
   };