Switch to using fish (again), keep root using bash for stability

This commit is contained in:
Evie Litherland-Smith 2023-11-04 16:47:14 +00:00
parent 24502b5e62
commit ec89edbe6c
2 changed files with 6 additions and 3 deletions

View file

@ -35,7 +35,7 @@
user = "xenia";
system = "x86_64-linux";
group = "users";
shell = "zsh";
shell = "fish";
systemModules = [ ./system/hyprland.nix ];
homeModules = [
./home/accounts/default.nix
@ -195,7 +195,7 @@
];
in {
root = {
shell = pkgs.${shell};
shell = pkgs.bash;
openssh = { inherit authorizedKeys; };
};
${user} = {

View file

@ -5,6 +5,8 @@
"${tokyonight-folke}/extras/sublime/tokyonight_night.tmTheme";
programs = {
bash.enable = true;
bat.enable = true;
fish.enable = true;
readline = {
enable = true;
includeSystemConfig = true;
@ -21,9 +23,9 @@
fzf = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
};
bat.enable = true;
git = {
enable = true;
package = pkgs.gitFull;
@ -90,6 +92,7 @@
starship = {
enable = true;
enableBashIntegration = true;
enableFishIntegration = true;
enableZshIntegration = true;
settings = {
command_timeout = 1000;