You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/zsh/module.nix
+9-1Lines changed: 9 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,13 @@ in
55
55
default=config.pkgs.oh-my-posh;
56
56
};
57
57
};
58
+
starship={
59
+
enable=lib.mkEnableOption"starship";
60
+
package=lib.mkOption{
61
+
type=lib.types.package;
62
+
default=config.pkgs.starship;# Or self'.packages.starship, assuming you use flake parts
63
+
};
64
+
};
58
65
zoxide={
59
66
enable=lib.mkEnableOption"zoxide";
60
67
package=lib.mkOption{
@@ -65,7 +72,6 @@ in
65
72
type=withlib.types;listOfstr;
66
73
default=[];
67
74
};
68
-
description="adds fzf to zsh without integrating solely so that zoxide can use it for reverse searching, use this if you dont want to integrate fzf with your shell for history, but want it for zoxide";
0 commit comments