fish: replace zsh with fish

This commit is contained in:
Veneficium 2024-10-10 22:33:51 +02:00
parent a9f80adf3e
commit cd7b9191bb
5 changed files with 21 additions and 4 deletions

View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.fish = {
enable = true;
plugins = [
{
name = "fish-you-should-use";
src = pkgs.fishPlugins.fish-you-should-use;
}
];
};
}

View file

@ -2,6 +2,8 @@
{ {
programs.starship = { programs.starship = {
enable = true; enable = true;
enableZshIntegration = true; #enableZshIntegration = true;
enableTransience = true;
enableFishIntegration = true;
}; };
} }

View file

@ -49,6 +49,8 @@
}; };
}; };
programs.fish.enable = true;
settings = { settings = {
users.fedfer.enable = lib.mkForce true; users.fedfer.enable = lib.mkForce true;

View file

@ -2,7 +2,8 @@
{ {
imports = [ imports = [
../../homeManagerModules/zsh.nix #../../homeManagerModules/zsh.nix
../../homeManagerModules/fish.nix
../../homeManagerModules/starship.nix ../../homeManagerModules/starship.nix
../../homeManagerModules/desktopPrograms/firefox.nix ../../homeManagerModules/desktopPrograms/firefox.nix
@ -67,12 +68,12 @@
nixd nixd
nixpkgs-fmt nixpkgs-fmt
nixfmt-rfc-style nixfmt-rfc-style
fira-code-nerdfont
powertop powertop
git-credential-manager git-credential-manager
vesktop vesktop
libreoffice-fresh libreoffice-fresh
valent valent
logseq
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;

View file

@ -18,7 +18,7 @@
"networkmanager" "networkmanager"
"wheel" "wheel"
]; ];
shell = pkgs.zsh; shell = pkgs.fish;
}; };
}; };
} }