nixfiles/home/nixos.nix

7 lines
115 B
Nix
Raw Normal View History

2021-12-20 23:48:26 +00:00
{ config, ... }: {
users.users.chaoticryptidz = {
isNormalUser = true;
extraGroups = [ "wheel" ];
};
}