Skip to content

Commit db7202f

Browse files
nixos/gonic: moving podcast-path from RO to RW (#382049)
2 parents a5c1503 + b0be6e4 commit db7202f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nixos/modules/services/audio/gonic.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ in
5454
ReadWritePaths = "";
5555
BindPaths = [
5656
cfg.settings.playlists-path
57+
cfg.settings.podcast-path
5758
];
5859
BindReadOnlyPaths = [
5960
# gonic can access scrobbling services
6061
"-/etc/resolv.conf"
6162
"-/etc/ssl/certs/ca-certificates.crt"
6263
builtins.storeDir
63-
cfg.settings.podcast-path
6464
] ++ cfg.settings.music-path
6565
++ lib.optional (cfg.settings.tls-cert != null) cfg.settings.tls-cert
6666
++ lib.optional (cfg.settings.tls-key != null) cfg.settings.tls-key;

0 commit comments

Comments
 (0)