File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed
Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change 3636 Set a default value for the maximum lifetime in seconds of identities added to the agent.
3737 '' ;
3838 } ;
39-
40- enableBashIntegration = lib . hm . shell . mkBashIntegrationOption { inherit config ; } ;
41-
42- enableZshIntegration = lib . hm . shell . mkZshIntegrationOption { inherit config ; } ;
43-
44- enableFishIntegration = lib . hm . shell . mkFishIntegrationOption { inherit config ; } ;
45-
46- enableNushellIntegration = lib . hm . shell . mkNushellIntegrationOption { inherit config ; } ;
4739 } ;
4840
4941 config = lib . mkIf cfg . enable (
8476 '' ;
8577 in
8678 {
87- bash . profileExtra = lib . mkIf cfg . enableBashIntegration ( lib . mkBefore bashIntegration ) ;
79+ bash . profileExtra = lib . mkBefore bashIntegration ;
8880
89- zsh . envExtra = lib . mkIf cfg . enableZshIntegration ( lib . mkBefore bashIntegration ) ;
81+ zsh . envExtra = lib . mkBefore bashIntegration ;
9082
91- fish . shellInit = lib . mkIf cfg . enableFishIntegration ( lib . mkBefore fishIntegration ) ;
83+ fish . shellInit = lib . mkBefore fishIntegration ;
9284
93- nushell . extraConfig = lib . mkIf cfg . enableNushellIntegration ( lib . mkBefore nushellIntegration ) ;
85+ nushell . extraConfig = lib . mkBefore nushellIntegration ;
9486 } ;
9587 }
9688
You can’t perform that action at this time.
0 commit comments