Switch default shell back to fish
This commit is contained in:
parent
16994c48e2
commit
cacda98abb
|
@ -20,7 +20,7 @@
|
|||
user = "xenia";
|
||||
system = "x86_64-linux";
|
||||
group = "users";
|
||||
shell = "zsh";
|
||||
shell = "fish";
|
||||
systemModules = [ ./system/hyprland.nix ];
|
||||
homeModules = [
|
||||
./home/accounts/default.nix
|
||||
|
|
|
@ -32,19 +32,12 @@
|
|||
};
|
||||
programs = {
|
||||
bash.enable = true;
|
||||
fish.enable = true;
|
||||
nushell.enable = true;
|
||||
zsh = {
|
||||
fish = {
|
||||
enable = true;
|
||||
enableAutosuggestions = true;
|
||||
enableCompletion = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
enableVteIntegration = true;
|
||||
autocd = true;
|
||||
dotDir = ".config/zsh";
|
||||
historySubstringSearch.enable = true;
|
||||
history.path = "${config.xdg.dataHome}/zsh/history";
|
||||
initExtra = ''
|
||||
interactiveShellInit = "enable_transience";
|
||||
};
|
||||
zsh.initExtra = ''
|
||||
xdg-query-program () {
|
||||
FILETYPE=$(xdg-mime query filetype $@)
|
||||
DEFAULT=$(xdg-mime query default $FILETYPE)
|
||||
|
@ -73,12 +66,6 @@
|
|||
done
|
||||
}
|
||||
'';
|
||||
oh-my-zsh = {
|
||||
enable = true;
|
||||
plugins = [ "colored-man-pages" "lol" "rand-quote" ];
|
||||
theme = "";
|
||||
};
|
||||
};
|
||||
eza = {
|
||||
enable = true;
|
||||
git = true;
|
||||
|
@ -97,13 +84,12 @@
|
|||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
enableNushellIntegration = true;
|
||||
};
|
||||
fzf = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
bat.enable = true;
|
||||
git = {
|
||||
|
@ -173,7 +159,6 @@
|
|||
starship = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
enableFishIntegration = true;
|
||||
enableNushellIntegration = true;
|
||||
settings = {
|
||||
|
|
Loading…
Reference in a new issue