This commit is contained in:
blahai 2025-02-13 21:39:55 +02:00
parent eec4c01dfb
commit d13b5044ba
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
5 changed files with 17 additions and 21 deletions

8
flake.lock generated
View file

@ -356,11 +356,11 @@
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": { "locked": {
"lastModified": 1739465816, "lastModified": 1739470114,
"narHash": "sha256-XqRCZXnbfZA90Y+R46w9Tc46ZGbQ/EN2/pzxByqS5uM=", "narHash": "sha256-b81KYVs8xcKkvPcp6NnU+qTAJfHpdOYB8DtTWXoh0bg=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "85986cb3d2a0abd234a38781305e43412f30dbed", "rev": "d06a4b4bed4335098a757c46ad8f0310d893e980",
"revCount": 58, "revCount": 59,
"type": "git", "type": "git",
"url": "https://git.blahai.gay/blahai/haipkgs.git" "url": "https://git.blahai.gay/blahai/haipkgs.git"
}, },

View file

@ -111,7 +111,7 @@
}; };
home-manager = { home-manager = {
extraSpecialArgs = {inherit inputs;}; extraSpecialArgs = {inherit inputs pkgs-smol;};
useGlobalPkgs = true; useGlobalPkgs = true;
useUserPackages = true; useUserPackages = true;
verbose = true; verbose = true;

View file

@ -2,6 +2,7 @@
inputs, inputs,
config, config,
pkgs, pkgs,
pkgs-smol,
... ...
}: { }: {
imports = [ imports = [
@ -56,7 +57,7 @@
}; };
iconTheme = { iconTheme = {
name = "WhiteSur"; name = "WhiteSur";
package = pkgs.whitesur-icon-theme.override { package = pkgs-smol.whitesur-icon-theme.override {
boldPanelIcons = true; boldPanelIcons = true;
alternativeIcons = true; alternativeIcons = true;
}; };

View file

@ -2,7 +2,6 @@
pkgs, pkgs,
config, config,
inputs, inputs,
lib,
... ...
}: { }: {
imports = [ imports = [
@ -27,10 +26,11 @@
]; ];
xdg.configFile."hypr/xdph.conf" = { xdg.configFile."hypr/xdph.conf" = {
target = "";
text = '' text = ''
screencopy { 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; enable = true;
port = 5055; port = 5055;
openFirewall = true; 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 = { sonarr = {
@ -40,15 +46,4 @@
package = pkgs.prowlarr; 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"
];
} }