Manual: Remove store path references

This commit is contained in:
Eelco Dolstra
2015-09-24 11:50:58 +02:00
parent e73b19ae4e
commit 89e983786a
13 changed files with 30 additions and 20 deletions
+3 -1
View File
@@ -97,7 +97,6 @@ in
transcoders = mkOption {
type = types.listOf types.path;
default = [ "${pkgs.ffmpeg}/bin/ffmpeg" ];
description = ''
List of paths to transcoder executables that should be accessible
from Subsonic. Symlinks will be created to each executable inside
@@ -153,5 +152,8 @@ in
};
users.extraGroups.subsonic.gid = config.ids.gids.subsonic;
services.subsonic.transcoders = mkDefault [ "${pkgs.ffmpeg}/bin/ffmpeg" ];
};
}