diff --git a/flake.nix b/flake.nix index 1dae9d7..98cd972 100644 --- a/flake.nix +++ b/flake.nix @@ -54,6 +54,7 @@ lix-module, chaotic, home-manager, + haipkgs, ... } @ inputs: let system = "x86_64-linux"; @@ -72,6 +73,7 @@ lix-module.nixosModules.default home-manager.nixosModules.default chaotic.nixosModules.default + haipkgs.nixosModules.default ]; }; diff --git a/hosts/nyx/configuration.nix b/hosts/nyx/configuration.nix index 1029a0b..3e2a8dc 100644 --- a/hosts/nyx/configuration.nix +++ b/hosts/nyx/configuration.nix @@ -207,13 +207,13 @@ substituters = [ "https://nix-community.cachix.org" "https://nixpkgs-unfree.cachix.org" - "https://haipkgs.cachix.org" + # "https://haipkgs.cachix.org" "https://hyprland.cachix.org" ]; trusted-public-keys = [ "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "nixpkgs-unfree.cachix.org-1:hqvoInulhbV4nJ9yJOEr+4wxhDV4xq2d1DK7S6Nj6rs=" - "haipkgs.cachix.org-1:AcjMqIafTEQ7dw99RpeTJU2ywNUn1h8yIxz2+zjpK/A=" + # "haipkgs.cachix.org-1:AcjMqIafTEQ7dw99RpeTJU2ywNUn1h8yIxz2+zjpK/A=" "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc=" ]; }; diff --git a/modules/nixos/services/jellyfin.nix b/modules/nixos/services/jellyfin.nix index 8cf2b40..847ef18 100644 --- a/modules/nixos/services/jellyfin.nix +++ b/modules/nixos/services/jellyfin.nix @@ -13,13 +13,7 @@ enable = true; port = 5055; openFirewall = true; - package = pkgs.jellyseerr.overrideAttrs (_: { - # https://github.com/NixOS/nixpkgs/pull/380532 - postBuild = '' - # Clean up broken symlinks left behind by `pnpm prune` - find node_modules -xtype l -delete - ''; - }); + package = pkgs.jellyseerr; }; sonarr = {