mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-10 07:58:30 +01:00
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:
parent
d1f6e5f232
commit
ce79700f6a
@ -5,6 +5,7 @@
|
|||||||
./eza.nix
|
./eza.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
./hyprlang.nix
|
./hyprlang.nix
|
||||||
|
./hyprlock.nix
|
||||||
./kitty.nix
|
./kitty.nix
|
||||||
./zola.nix
|
./zola.nix
|
||||||
];
|
];
|
||||||
|
16
overlays/hyprlock.nix
Normal file
16
overlays/hyprlock.nix
Normal 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=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user