diff options
Diffstat (limited to '')
-rw-r--r-- | overlays/default.nix | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/overlays/default.nix b/overlays/default.nix index 1af07c3..620c73c 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -22,13 +22,13 @@ # example = prev.example.overrideAttrs (oldAttrs: rec { # ... # }); - #ghostty = prev.ghostty.overrideAttrs (_: { - # preBuild = '' - # shopt -s globstar - # sed -i 's/^const xev = @import("xev");$/const xev = @import("xev").Epoll;/' **/*.zig - # shopt -u globstar - # ''; - #}); + ghostty = prev.ghostty.overrideAttrs (_: { + preBuild = '' + shopt -s globstar + sed -i 's/^const xev = @import("xev");$/const xev = @import("xev").Epoll;/' **/*.zig + shopt -u globstar + ''; + }); linux-firmware = prev.linux-firmware.overrideAttrs (old: rec { pname = "linux-firmware"; |