flakes/users/rin/default.nix

10 lines
210 B
Nix
Raw Permalink Normal View History

{ 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-26 21:05:59 +07:00
home-manager.users.rin = import ./home.nix;
}