this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fish beta

+17
+5
darwin/flake.nix
··· 90 90 # Optionally, use home-manager.extraSpecialArgs to pass 91 91 # arguments to home.nix 92 92 } 93 + { 94 + nixpkgs.overlays = [ 95 + (import ../overlays/fish.nix) 96 + ]; 97 + } 93 98 ]; 94 99 specialArgs = {inherit inputs;}; 95 100 };
+12
overlays/fish.nix
··· 1 + final: prev: { 2 + fish = prev.fish.overrideAttrs (oldAttrs: { 3 + version = "4.0b1"; 4 + 5 + src = prev.fetchFromGitHub { 6 + owner = "fish-shell"; 7 + repo = "fish-shell"; 8 + rev = "8557c3c48c132a31dffbab6a90326a80f9cae8ec"; 9 + hash = "sha256-O5xZHXNrJMpjTA2mrTqzMtU/55UArwoc2adc0R6pVl0="; 10 + }; 11 + }); 12 + }