11 lines
255 B
Nix
11 lines
255 B
Nix
{pkgs, ...}: {
|
||
|
||
# Define a user account. Don't forget to set a password with ‘passwd’.
|
||
users.users.john = {
|
||
isNormalUser = true;
|
||
description = "John";
|
||
extraGroups = [ "networkmanager" "wheel" "docker" ];
|
||
shell = pkgs.fish;
|
||
};
|
||
|
||
}
|