dotfiles/modules/users/may.nix
2026-05-23 11:13:59 -04:00

16 lines
274 B
Nix

{ pkgs, ... }:
{
users.users.may = {
isNormalUser = true;
description = "may";
extraGroups = [ "networkmanager" "wheel" ];
};
home-manager.users.may = { pkgs, ... }: {
home = {
username = "may";
homeDirectory = "/home/may";
};
};
}