mirror of
https://github.com/blahai/nyx.git
synced 2025-06-07 22:23:01 -04:00
;-;
This commit is contained in:
parent
eec4c01dfb
commit
d13b5044ba
5 changed files with 17 additions and 21 deletions
|
@ -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
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
|
|
@ -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"
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue