media server

This commit is contained in:
Till 2025-09-02 09:57:38 +02:00
parent 8f3637e363
commit 261dbdc6c7
2 changed files with 16 additions and 1 deletions

View file

@ -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

View file

@ -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;
}