chore(yabai): overlay 6.0.2 -> 6.0.4

This commit is contained in:
winston 2024-01-04 14:33:50 +01:00
parent 9b85147647
commit 05d8afb09a
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 8 additions and 12 deletions

View file

@ -1,8 +1,4 @@
{
lib,
pkgs,
...
}: {
{lib, ...}: {
# manipulate the global /etc/zshenv for PATH, etc.
programs.zsh.enable = true;
@ -17,13 +13,6 @@
services = {
yabai = {
enable = true;
package = pkgs.yabai.overrideAttrs (prev: {
version = "6.0.2";
src = pkgs.fetchzip {
inherit (prev.src) url;
hash = "sha256-aFM0rtHrHsLEziDWhRwqeCy70dSAOAX4HDpqHqvnoWs=";
};
});
enableScriptingAddition = true;
logFile = "/var/tmp/yabai.log";
config = {

View file

@ -2,6 +2,13 @@
inputs.swayfx.overlays.default
inputs.nix-vscode-extensions.overlays.default
(final: prev: {
yabai = prev.yabai.overrideAttrs (old: rec {
version = "6.0.4";
src = prev.fetchzip {
url = "https://github.com/koekeishiya/yabai/releases/download/v${version}/yabai-v${version}.tar.gz";
hash = "sha256-gxQBZ/7I2TVjoG5a8ea2+W4OwI9pJFbGSbZzcL5JY4Q=";
};
});
nur = import inputs.nur {
nurpkgs = prev;
pkgs = prev;