all repos — nixfiles @ 1958bbc20349e1081c62b4c099d25c553c6fc397

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

fish: use home-manager's nix-your-shell integration
Alan Pearce alan@alanpearce.eu
Tue, 10 Dec 2024 19:34:35 +0100
commit

1958bbc20349e1081c62b4c099d25c553c6fc397

parent

c98dc89219bdd965b6fd3aeb31fd33335add2e3b

1 files changed, 4 insertions(+), 2 deletions(-)

jump to
M user/settings/fish.nixuser/settings/fish.nix
@@ -31,9 +31,7 @@ rev = "cafaaabe63c124bf0714f89ec715cfe9ece87fa2";           };
         }
       ];
-    # TODO: pre-generate nix-your-shell
     interactiveShellInit = ''
-      ${pkgs.nix-your-shell}/bin/nix-your-shell --nom fish env | source
       bind \es __ghq_repository_search
       # don't bind ctrl-t, it does nice things on macOS/BSD
       set FZF_CTRL_T_COMMAND
@@ -87,5 +85,9 @@ };   xdg.configFile."fish/functions" = {
     recursive = true;
     source = ./fish/functions;
+  };
+
+  programs.nix-your-shell = {
+    enable = true;
   };
 }