home: fish: enable nix auto run

This commit is contained in:
Antoine Martin 2022-03-30 12:40:35 +02:00
parent e19aff1d38
commit 97f4ebee74

View file

@ -11,6 +11,12 @@ in
options.my.home.fish.enable = (mkEnableOption "Fish shell") // { default = true; }; options.my.home.fish.enable = (mkEnableOption "Fish shell") // { default = true; };
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.sessionVariables = {
# automatically prompt to run program in nix-shell if it's not installed
NIX_AUTO_RUN = "1";
NIX_AUTO_RUN_INTERACTIVE = "1";
};
programs.fish = { programs.fish = {
enable = true; enable = true;
}; };