From 2920b72f369bfe9a7926e3ffc230209ed09241c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Sun, 31 Mar 2024 16:24:42 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=95=20(aurum/system)=20set=20fish=20as=20?= =?UTF-8?q?default=20sheel=20for=20user=20laurent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hosts/aurum/system/users/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/aurum/system/users/default.nix b/hosts/aurum/system/users/default.nix index e427ce8..adff79f 100644 --- a/hosts/aurum/system/users/default.nix +++ b/hosts/aurum/system/users/default.nix @@ -2,13 +2,16 @@ # disable user creation/deletion users.mutableUsers = false; + # enable the fish shell globally + programs.fish.enable = true; + # configure users users = { users.laurent = { isNormalUser = true; initialPassword = "laurent"; extraGroups = ["wheel" "video"]; - shell = pkgs.zsh; + shell = pkgs.fish; # set login shell to fish }; }; }