From 405492b2e965e3da30062ac020aa04995ab874d7 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Wed, 31 Jul 2019 22:48:10 +0800 Subject: [PATCH] nixbld: add fish shell --- nixbld-etc-nixos/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixbld-etc-nixos/configuration.nix b/nixbld-etc-nixos/configuration.nix index 1859932..b9cc419 100644 --- a/nixbld-etc-nixos/configuration.nix +++ b/nixbld-etc-nixos/configuration.nix @@ -52,6 +52,8 @@ in services.openssh.forwardX11 = true; programs.mosh.enable = true; + programs.fish.enable = true; + # Open ports in the firewall. networking.firewall.allowedTCPPorts = [ 631 5901 80 443 ]; networking.firewall.allowedUDPPorts = [ 631 ]; @@ -74,6 +76,7 @@ in users.extraUsers.sb = { isNormalUser = true; extraGroups = ["wheel" "plugdev" "dialout" "lp" "scanner" "wireshark" "docker"]; + shell = pkgs.fish; }; users.extraUsers.rj = { isNormalUser = true;