fish: replace zsh with fish
This commit is contained in:
parent
a9f80adf3e
commit
cd7b9191bb
5 changed files with 21 additions and 4 deletions
12
homeManagerModules/fish.nix
Normal file
12
homeManagerModules/fish.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.fish = {
|
||||||
|
enable = true;
|
||||||
|
plugins = [
|
||||||
|
{
|
||||||
|
name = "fish-you-should-use";
|
||||||
|
src = pkgs.fishPlugins.fish-you-should-use;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -2,6 +2,8 @@
|
||||||
{
|
{
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableZshIntegration = true;
|
#enableZshIntegration = true;
|
||||||
|
enableTransience = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,8 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.fish.enable = true;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
users.fedfer.enable = lib.mkForce true;
|
users.fedfer.enable = lib.mkForce true;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
"wheel"
|
"wheel"
|
||||||
];
|
];
|
||||||
shell = pkgs.zsh;
|
shell = pkgs.fish;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue