summaryrefslogtreecommitdiff
path: root/modules/basic-tools
diff options
context:
space:
mode:
Diffstat (limited to 'modules/basic-tools')
-rw-r--r--modules/basic-tools/default.nix3
-rw-r--r--modules/basic-tools/fish.nix1
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/basic-tools/default.nix b/modules/basic-tools/default.nix
index 9408778..699de18 100644
--- a/modules/basic-tools/default.nix
+++ b/modules/basic-tools/default.nix
@@ -73,8 +73,7 @@
vim = "nvim";
grep = "grep --color=auto";
};
- users.defaultUserShell = (if config.networking.hostName == "toaster" then pkgs.fish else pkgs.zsh);
- users.users.root.shell = pkgs.zsh; # keep root shell posix compatible
+ users.defaultUserShell = pkgs.zsh; # keep root shell posix compatible
programs.iftop.enable = true;
programs.mosh.enable = true;
diff --git a/modules/basic-tools/fish.nix b/modules/basic-tools/fish.nix
index b948149..d958060 100644
--- a/modules/basic-tools/fish.nix
+++ b/modules/basic-tools/fish.nix
@@ -14,6 +14,7 @@
enable = true;
interactiveShellInit = ''
set fish_greeting
+ set fish_command_not_found
'';
shellAliases = {
ls = "lsd --icon=never";