dotfiles/users/josh/nix_modules/_user.nix
RingOfStorms (Joshua Bell) 57090ccde1 SSH updates
2024-04-25 10:47:21 -05:00

16 lines
370 B
Nix

{ 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;
};
}