From 959d5bb91165279ad222fa4726ee067193e91b08 Mon Sep 17 00:00:00 2001 From: alisceon Date: Sun, 1 Feb 2026 17:33:45 +0100 Subject: [PATCH] shell fixes --- flake.lock | 12 ++++++------ hosts/common/base.nix | 6 ++++++ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 814ecee..959b0f2 100644 --- a/flake.lock +++ b/flake.lock @@ -295,11 +295,11 @@ ] }, "locked": { - "lastModified": 1769962319, - "narHash": "sha256-U0lKicifKNBbO6JnxKNBTp9bFJPEiVCkL1D4NJwnIis=", + "lastModified": 1769963185, + "narHash": "sha256-nZX++qAuCKNUWNvMRT3VR36KMtU+krZiGVmrmJTc6oA=", "owner": "nix-community", "repo": "NUR", - "rev": "9aa988324da5f6a880a8f05fe5ef448a81a916ea", + "rev": "db5b20713c2a3e794ef50a396533191a815b17e7", "type": "github" }, "original": { @@ -316,11 +316,11 @@ ] }, "locked": { - "lastModified": 1769962319, - "narHash": "sha256-U0lKicifKNBbO6JnxKNBTp9bFJPEiVCkL1D4NJwnIis=", + "lastModified": 1769963185, + "narHash": "sha256-nZX++qAuCKNUWNvMRT3VR36KMtU+krZiGVmrmJTc6oA=", "owner": "nix-community", "repo": "NUR", - "rev": "9aa988324da5f6a880a8f05fe5ef448a81a916ea", + "rev": "db5b20713c2a3e794ef50a396533191a815b17e7", "type": "github" }, "original": { diff --git a/hosts/common/base.nix b/hosts/common/base.nix index ea0cdfb..ea23186 100644 --- a/hosts/common/base.nix +++ b/hosts/common/base.nix @@ -4,6 +4,11 @@ kernel.sysctl = { "net.ipv4.ip_unprivileged_port_start" = 0; }; + initrd = { + network ={ + ssh.shell = pkgs.bash; + } + } }; system.stateVersion = "24.05"; system.autoUpgrade = { @@ -120,6 +125,7 @@ oci-containers.backend = "podman"; }; # end virtualisation + users.defaultUserShell = pkgs.bash; users.users.alisceon = { isNormalUser = true; extraGroups = [ "wheel" "networkmanager" "podman" ];