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