Switch to using fish (again), keep root using bash for stability
This commit is contained in:
parent
24502b5e62
commit
ec89edbe6c
|
@ -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} = {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue