aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrankie B <git@diskfloppy.me>2023-04-25 22:43:52 +0100
committerFrankie B <git@diskfloppy.me>2023-04-25 22:43:52 +0100
commitf9ebdbfdfa0efb5bb9360f8587e542e2110202af (patch)
tree4afeb5b6f3377c3ba0ffda46c779df31ad98c388
parente4513b6c532f1c9080ebe75effaafd62e6f745e9 (diff)
Make fish the default shell
-rw-r--r--homes/floppydisk/default.nix3
-rw-r--r--hosts/nixbox/configuration.nix4
2 files changed, 6 insertions, 1 deletions
diff --git a/homes/floppydisk/default.nix b/homes/floppydisk/default.nix
index d87376e..4acf810 100644
--- a/homes/floppydisk/default.nix
+++ b/homes/floppydisk/default.nix
@@ -28,6 +28,9 @@
# Enable home-manager
home-manager.enable = true;
+ # Enable fish shell
+ fish.enable = true;
+
# enable git and configure users
git = {
enable = true;
diff --git a/hosts/nixbox/configuration.nix b/hosts/nixbox/configuration.nix
index 00a2fb3..78bb6f7 100644
--- a/hosts/nixbox/configuration.nix
+++ b/hosts/nixbox/configuration.nix
@@ -97,6 +97,7 @@
# thunderbird
];
initialPassword = "changeme";
+ shell = pkgs.fish;
};
# Allow unfree packages
@@ -113,9 +114,10 @@
nerdfonts
jetbrains-mono
kitty
- fish
];
+ programs.fish.enable = true;
+
# Some programs need SUID wrappers, can be configured further or are
# started in user sessions.
# programs.mtr.enable = true;