add ffmpeg to sonarr and radarr

This commit is contained in:
2025-10-22 21:50:35 -05:00
parent 32f37c7c2e
commit b7fb67f939
5 changed files with 38 additions and 25 deletions

View File

@@ -18,12 +18,18 @@ in {
boot.kernelModules = ["zfs"];
boot.supportedFilesystems = ["zfs"];
# arc cache size
boot.kernelParams = [ "zfs.zfs_arc_max=12884901888" ];
# pools to import
#boot.zfs.extraPools = [ "holocron" "holocron/archives" "/holocron/media" "/holocron/users" ];
boot.zfs.extraPools = [ "holocron" ];
# enable smart monitoring
services.smartd = {
enable = true;
autodetect = true;
defaults.monitored = "-a -o on -s (S/../.././05|L/../01/./05)";
notifications.test = true;
notifications.mail = {
enable = true;
sender = "zfs@snowbelle.lan";
@@ -48,25 +54,25 @@ in {
# install userspace tools for acl's
environment.systemPackages = with pkgs; [smartmontools];
fileSystems."/holocron" = {
device = "holocron";
fsType = "zfs";
options = ["nofail"];
};
fileSystems."/holocron/archives" = {
device = "holocron/archives";
fsType = "zfs";
options = ["nofail"];
};
fileSystems."/holocron/users" = {
device = "holocron/users";
fsType = "zfs";
options = ["nofail"];
};
fileSystems."/holocron/media" = {
device = "holocron/media";
fsType = "zfs";
options = ["nofail"];
};
# fileSystems."/holocron" = {
# device = "holocron";
# fsType = "zfs";
# options = ["nofail"];
# };
# fileSystems."/holocron/archives" = {
# device = "holocron/archives";
# fsType = "zfs";
# options = ["nofail"];
# };
# fileSystems."/holocron/users" = {
# device = "holocron/users";
# fsType = "zfs";
# options = ["nofail"];
# };
# fileSystems."/holocron/media" = {
# device = "holocron/media";
# fsType = "zfs";
# options = ["nofail"];
# };
};
}