all repos — nixfiles @ 0741f0290ee5e7082ff421921583ff9ad8ec6f1e

System and user configuration, managed by nix and home-manager

reformat all nix code

Alan Pearce
commit

0741f0290ee5e7082ff421921583ff9ad8ec6f1e

parent

83d9e0536997ccea2dde49e63d0f0f458f56ee61

1 file changed, 12 insertions(+), 6 deletions(-)

changed files
M user/settings/fish.nixuser/settings/fish.nix
@@ -1,15 +1,21 @@
-{ pkgs -, lib -, ... -}: { +{ + pkgs, + lib, + ... +}: +{ home.shell.enableFishIntegration = true; programs.fish = { enable = true; plugins = let - fromNixpkgs = pkg: { name = pkg.name; src = pkg.src; }; + fromNixpkgs = pkg: { + name = pkg.name; + src = pkg.src; + }; in - with pkgs.fishPlugins; [ + with pkgs.fishPlugins; + [ (fromNixpkgs fzf-fish) (fromNixpkgs autopair) (fromNixpkgs hydro)