8 lines
164 B
Nix
8 lines
164 B
Nix
{ config, pkgs, ... }: {
|
|
users.users.rin = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "audio" "video" "wheel" ];
|
|
shell = pkgs.zsh;
|
|
uid = 1001;
|
|
};
|
|
}
|