SSH updates

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-04-25 10:47:21 -05:00
parent 74545072dd
commit 57090ccde1
12 changed files with 96 additions and 59 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, settings, ... }:
{
users.users.${settings.user.username} = {
initialPassword = "password1";
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "video" "input" ];
shell = pkgs.zsh;
};
# TODO how to do this from home manager file instead
environment.pathsToLink = [ "/share/zsh" ];
programs.zsh = {
enable = true;
};
}