2021-05-20 14:02:49 +07:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
|
users.users.rin = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
extraGroups = [ "audio" "video" "wheel" ];
|
|
|
|
|
shell = pkgs.zsh;
|
2021-05-21 07:42:53 +07:00
|
|
|
uid = 1001;
|
2021-05-20 14:02:49 +07:00
|
|
|
};
|
2021-05-26 21:05:59 +07:00
|
|
|
home-manager.users.rin = import ./home.nix;
|
2021-05-20 14:02:49 +07:00
|
|
|
}
|