flakes/cfg/winter/rin/default.nix

8 lines
148 B
Nix
Raw Normal View History

{ config, pkgs, ... }: {
users.users.rin = {
isNormalUser = true;
extraGroups = [ "audio" "video" "wheel" ];
shell = pkgs.zsh;
};
}