13 lines
288 B
Nix
13 lines
288 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Define a user account. Don't forget to set a password with 'passwd'.
|
|
users.users.atridad = {
|
|
isNormalUser = true;
|
|
description = "Atridad";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
packages = with pkgs; [
|
|
# thunderbird
|
|
];
|
|
};
|
|
} |