Skip to content

Commit

Permalink
FIX: Mac build for updated Nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sukant Hajra committed Dec 11, 2024
1 parent 5124155 commit 1722c1d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions home/modules/base/gui/all/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,9 @@ in {
programs.fish = import programs/fish;
programs.kitty = import programs/kitty config pkgs;
programs.noti.enable = true;
programs.sioyek.enable = true;
programs.sioyek.package = sioyekPkg;
# REVISIT: 2024-12-10: even stable package broken for Darwin
programs.sioyek.enable = ! pkgs.stdenv.isDarwin;
#programs.sioyek.package = sioyekPkg;
programs.urxvt = import programs/urxvt config pkgs;
programs.vscode = import programs/vscode config pkgs;
programs.zathura.enable = true;
Expand Down
5 changes: 3 additions & 2 deletions packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,9 @@ in {
nixpkgs.prebuilt.programming.general = pickHome [
"gnumake"
"nil"
"wireshark"
];
] // (np.pick { linux = "home"; darwin = "system"; } [
"wireshark" # REVISIT: 2024-12-10: Package broken on Darwin/unstable
]);

nixpkgs.prebuilt.programming.haskell = pickHome [
"cabal2nix"
Expand Down

0 comments on commit 1722c1d

Please sign in to comment.