diff --git a/system/hardware/homer.nix b/system/hardware/homer.nix index 60cfdfd..464c914 100644 --- a/system/hardware/homer.nix +++ b/system/hardware/homer.nix @@ -40,6 +40,18 @@ options = [ "fmask=0022" "dmask=0022" ]; }; + fileSystems."/var/mediathek" = { + device = "/dev/disk/by-uuid/d6df2368-015f-4da6-9173-c8c7cdc8acc2"; + fsType = "btrfs"; + options = [ # If you don't have this options attribute, it'll default to "defaults" + # boot options for fstab. Search up fstab mount options you can use + "users" # Allows any user to mount and unmount + "nofail" # Prevent system from failing if this drive doesn't mount + "compress=zstd" + "noatime" + ]; + }; + swapDevices = [ ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking diff --git a/system/media.nix b/system/media.nix index 3bf79d1..347374d 100644 --- a/system/media.nix +++ b/system/media.nix @@ -1,5 +1,8 @@ { config, pkgs, ... }: { - # programs.steam.enable = true; + services.sonarr.enable = true; + services.radarr.enable = true; + services.flaresolverr.enable = true; + services.prowlarr.enable = true; }