nixos-configuration/user.nix

19 lines
340 B
Nix
Raw Normal View History

{ name }:
2023-02-11 01:48:02 +00:00
{ pkgs, ... }:
2023-02-11 01:40:39 +00:00
{
# Define a user account. Don't forget to set a password with `passwd`.
users.users.asonix = {
isNormalUser = true;
description = name;
2023-02-11 01:40:39 +00:00
shell = pkgs.zsh;
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
firefox
];
};
users.defaultUserShell = pkgs.zsh;
}