nixosTests.gonic: set up all necessary paths using tmpfiles
This commit is contained in:
parent
759812cc34
commit
f7c740853d
1 changed files with 10 additions and 2 deletions
|
@ -2,11 +2,19 @@ import ./make-test-python.nix ({ pkgs, ... }: {
|
||||||
name = "gonic";
|
name = "gonic";
|
||||||
|
|
||||||
nodes.machine = { ... }: {
|
nodes.machine = { ... }: {
|
||||||
|
systemd.tmpfiles.settings = {
|
||||||
|
"10-gonic" = {
|
||||||
|
"/tmp/music"."d" = {};
|
||||||
|
"/tmp/podcast"."d" = {};
|
||||||
|
"/tmp/playlists"."d" = {};
|
||||||
|
};
|
||||||
|
};
|
||||||
services.gonic = {
|
services.gonic = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
music-path = [ "/tmp" ];
|
music-path = [ "/tmp/music" ];
|
||||||
podcast-path = "/tmp";
|
podcast-path = "/tmp/podcast";
|
||||||
|
playlists-path = "/tmp/playlists";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue