mirror of
https://github.com/Nickiel12/nicks-nix-config.git
synced 2024-11-23 05:09:32 -08:00
14 lines
239 B
Nix
14 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";
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|