Skip to content

Commit 13d0d1c

Browse files
committed
hyprland: avoid regression in 0.47.x
1 parent 6499f8e commit 13d0d1c

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

home/overlays/hyprland/default.nix

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
self: super:
2+
3+
let
4+
# see: https://github.com/hyprwm/Hyprland/issues/9518
5+
commit = "74d0f34cf396f4fc41ee98b000e7d0a4e277c066";
6+
in
7+
{
8+
hyprland = super.hyprland.overrideAttrs (old: {
9+
version = "main-${commit}";
10+
11+
src = super.fetchFromGitHub {
12+
owner = "hyprwm";
13+
repo = "hyprland";
14+
fetchSubmodules = true;
15+
rev = "${commit}";
16+
hash = "sha256-8EM3SWF+GRv6CKW99UFQvC+/6586Upb5QSN2jb+Bjoo=";
17+
};
18+
});
19+
}

lib/overlays.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ in
7979
inputs.statix.overlays.default
8080
(import ../home/overlays/bat-lvl)
8181
(import ../home/overlays/bazecor)
82+
(import ../home/overlays/hyprland)
8283
(import ../home/overlays/hypr-monitor-attached)
8384
(import ../home/overlays/juno-theme)
8485
(import ../home/overlays/pyprland)

0 commit comments

Comments
 (0)