mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-18 13:29:32 +01:00
fixed mistakes
This commit is contained in:
parent
70053d2d6e
commit
2ae6dc0a6a
|
@ -5,7 +5,7 @@
|
|||
containers = {
|
||||
sonarrAnime = {
|
||||
image = "lscr.io/linuxserver/sonarr:latest";
|
||||
volumes = [ "sonarr_data:/config" "/srv/Multimedia/DessinsAnime:/tv" "/srv/Multimedia/Torrents:/downloads" ];
|
||||
volumes = [ "sonarr_data:/config" "/srv/Multimedia/DessinsAnime:/tv" "/srv/Multimedia/Torrents:/srv/Multimedia/Torrents" ];
|
||||
ports = [ "8999:8989" ];
|
||||
environment = {
|
||||
"PUID" = "1000";
|
||||
|
|
|
@ -27,7 +27,7 @@ in
|
|||
'';
|
||||
shares = {
|
||||
music = {
|
||||
path = "${cfg.dir}/Music";
|
||||
path = "/srv/media/Music";
|
||||
browseable = "yes";
|
||||
"read only" = "no";
|
||||
"create mask" = "0644";
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
};
|
||||
|
||||
fileSystems."/srv/media" =
|
||||
{ device = "/dev/sda1";
|
||||
{ device = "/dev/sdb1";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue