Unverified Commit db7202f1 authored by Arne Keller's avatar Arne Keller Committed by GitHub
Browse files

nixos/gonic: moving podcast-path from RO to RW (#382049)

parents a5c1503f b0be6e4d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -54,13 +54,13 @@ in
        ReadWritePaths = "";
        BindPaths = [
          cfg.settings.playlists-path
          cfg.settings.podcast-path
        ];
        BindReadOnlyPaths = [
          # gonic can access scrobbling services
          "-/etc/resolv.conf"
          "-/etc/ssl/certs/ca-certificates.crt"
          builtins.storeDir
          cfg.settings.podcast-path
        ] ++ cfg.settings.music-path
        ++ lib.optional (cfg.settings.tls-cert != null) cfg.settings.tls-cert
        ++ lib.optional (cfg.settings.tls-key != null) cfg.settings.tls-key;