Skip to content

Commit

Permalink
feat: macos overlays until nixpkgs updated
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Nov 14, 2023
1 parent 1718ace commit 9359424
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 55 deletions.
121 changes: 69 additions & 52 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@
};

# Nixpkgs fork
# nixpkgs-khanelinix = {
# url = "github:khaneliman/nixpkgs";
# };
nixpkgs-khanelinix = {
url = "github:khaneliman/nixpkgs/yabai-update";
};

# NixPkgs-Wayland
nixpkgs-wayland = {
Expand Down
10 changes: 10 additions & 0 deletions overlays/sketchybar/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
_: _final: prev: {
sketchybar = prev.sketchybar.overrideAttrs (oldAttrs: {

version = "2.19.3";

src = prev.fetchFromGitHub {
owner = "FelixKratz";
repo = "SketchyBar";
rev = "v2.19.3";
hash = "sha256-QT926AnV9jLc1KvYks6ukIAcMbVHOupTJWQ6vBHpcxc=";
};

# Create secondary sketchybar executable for dynamic island
installPhase = ''
${oldAttrs.installPhase}
Expand Down
3 changes: 3 additions & 0 deletions overlays/yabai/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{ channels, ... }: _final: prev: {
inherit (channels.nixpkgs-khanelinix) yabai;
}

0 comments on commit 9359424

Please sign in to comment.