mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-22 20:59:32 -08:00
13 lines
239 B
Nix
13 lines
239 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
users.users.nicholix = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "video" "audio" "networkmanager" "lp" "scanner" "input" "uinput" ];
|
|
shell = pkgs.zsh;
|
|
password = "password";
|
|
};
|
|
|
|
}
|
|
|