overlays: Update hyprlock to 0.2.0

Might fix an issue with the lock screen crashing when dpms is used with
multiple monitors.
This commit is contained in:
Donovan Glover 2024-03-13 14:04:21 -04:00
parent d1f6e5f232
commit ce79700f6a
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65
2 changed files with 17 additions and 0 deletions

View File

@ -5,6 +5,7 @@
./eza.nix
./hyprland.nix
./hyprlang.nix
./hyprlock.nix
./kitty.nix
./zola.nix
];

16
overlays/hyprlock.nix Normal file
View File

@ -0,0 +1,16 @@
{
nixpkgs.overlays = [
(final: prev: {
hyprlock = prev.hyprlock.overrideAttrs (oldAttrs: rec {
version = "0.2.0";
src = prev.fetchFromGitHub {
owner = "hyprwm";
repo = "hyprlock";
rev = "v${version}";
hash = "sha256-1p6Y/8+ETaz7GQ8wsXLUTrk2dD0YN9ySOfwjRp2TSG4=";
};
});
})
];
}