mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
4875fce088
Former-commit-id: e6f66110f0
11 lines
252 B
Nix
11 lines
252 B
Nix
{ config, pkgs, ... }: {
|
|
users = {
|
|
defaultUserShell = pkgs.zsh;
|
|
users.${config.var.username} = {
|
|
isNormalUser = true;
|
|
description = "${config.var.username} account";
|
|
extraGroups = [ "networkmanager" "wheel" ];
|
|
};
|
|
};
|
|
}
|