nixos-configuration/user.nix

17 lines
339 B
Nix
Raw Normal View History

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