diff options
author | Franck Cuny <franck@fcuny.net> | 2022-06-20 12:20:50 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-06-20 14:40:30 -0700 |
commit | 03455e2be8835d89b2b221b0bb5a18a485810918 (patch) | |
tree | f2b6a9edf37cdea6ea9f8a2f790756bf47234da9 /modules/system | |
parent | ref(home/shell): move all shell aliases to a shared configuration (diff) | |
download | world-03455e2be8835d89b2b221b0bb5a18a485810918.tar.gz |
ref(home/shell): switch default shell to fish
Change-Id: I905ce6eddc35e4c51a0ab27c8984e0da0fdee7a7 Reviewed-on: https://cl.fcuny.net/c/world/+/457 Reviewed-by: Franck Cuny <franck@fcuny.net> Tested-by: CI
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/users/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/users/default.nix b/modules/system/users/default.nix index 98e9801..ddc2c14 100644 --- a/modules/system/users/default.nix +++ b/modules/system/users/default.nix @@ -14,7 +14,7 @@ in uid = 1000; group = "fcuny"; home = "/home/fcuny"; - shell = pkgs.zsh; + shell = pkgs.fish; extraGroups = groupsIfExist [ "docker" "users" |