10 lines
228 B
Nix
10 lines
228 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
users.users.afoucaultc = {
|
|
isNormalUser = true;
|
|
description = "afoucaultc";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
shell = pkgs.zsh;
|
|
};
|
|
programs.zsh.enable = true;
|
|
}
|