16 lines
240 B
Nix
16 lines
240 B
Nix
|
# Configuration for user accounts.
|
||
|
|
||
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
users = {
|
||
|
defaultUserShell = pkgs.zsh;
|
||
|
|
||
|
users.bauke = {
|
||
|
description = "Bauke";
|
||
|
extraGroups = [ "networkmanager" "wheel" ];
|
||
|
isNormalUser = true;
|
||
|
};
|
||
|
};
|
||
|
}
|