This commit is contained in:
blahai 2025-02-13 21:39:55 +02:00
parent eec4c01dfb
commit d13b5044ba
No known key found for this signature in database
5 changed files with 17 additions and 21 deletions

View file

@ -2,7 +2,6 @@
pkgs,
config,
inputs,
lib,
...
}: {
imports = [
@ -27,10 +26,11 @@
];
xdg.configFile."hypr/xdph.conf" = {
target = "";
text = ''
screencopy {
custom_picker_binary = ${pkgs.hyprland-preview-share-picker-git}/bin/result-hyprland-preview-share-picker
max_fps = 144
custom_picker_binary = ${pkgs.hyprland-preview-share-picker-git}/bin/hyprland-preview-share-picker
allow_token_by_default = true
}
'';
};

View file

@ -13,7 +13,13 @@
enable = true;
port = 5055;
openFirewall = true;
package = pkgs.jellyseerr;
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
'';
});
};
sonarr = {
@ -40,15 +46,4 @@
package = pkgs.prowlarr;
};
};
# This bullshittery is cuz sonarr v4 still uses
# dotnet 6 which is EOL and is marked broken in
# nixpkgs but they are moving to 8 in v5 which
# will happen eventually (not anytime soon?)
nixpkgs.config.permittedInsecurePackages = [
"aspnetcore-runtime-6.0.36"
"aspnetcore-runtime-wrapped-6.0.36"
"dotnet-sdk-6.0.428"
"dotnet-sdk-wrapped-6.0.428"
];
}