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