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