shell fixes

This commit is contained in:
alisceon 2026-02-01 17:33:45 +01:00
parent 1932c74734
commit 959d5bb911
2 changed files with 12 additions and 6 deletions

12
flake.lock generated
View file

@ -295,11 +295,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1769962319, "lastModified": 1769963185,
"narHash": "sha256-U0lKicifKNBbO6JnxKNBTp9bFJPEiVCkL1D4NJwnIis=", "narHash": "sha256-nZX++qAuCKNUWNvMRT3VR36KMtU+krZiGVmrmJTc6oA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "9aa988324da5f6a880a8f05fe5ef448a81a916ea", "rev": "db5b20713c2a3e794ef50a396533191a815b17e7",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -316,11 +316,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1769962319, "lastModified": 1769963185,
"narHash": "sha256-U0lKicifKNBbO6JnxKNBTp9bFJPEiVCkL1D4NJwnIis=", "narHash": "sha256-nZX++qAuCKNUWNvMRT3VR36KMtU+krZiGVmrmJTc6oA=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "9aa988324da5f6a880a8f05fe5ef448a81a916ea", "rev": "db5b20713c2a3e794ef50a396533191a815b17e7",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -4,6 +4,11 @@
kernel.sysctl = { kernel.sysctl = {
"net.ipv4.ip_unprivileged_port_start" = 0; "net.ipv4.ip_unprivileged_port_start" = 0;
}; };
initrd = {
network ={
ssh.shell = pkgs.bash;
}
}
}; };
system.stateVersion = "24.05"; system.stateVersion = "24.05";
system.autoUpgrade = { system.autoUpgrade = {
@ -120,6 +125,7 @@
oci-containers.backend = "podman"; oci-containers.backend = "podman";
}; # end virtualisation }; # end virtualisation
users.defaultUserShell = pkgs.bash;
users.users.alisceon = { users.users.alisceon = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "podman" ]; extraGroups = [ "wheel" "networkmanager" "podman" ];