mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-07 05:08:51 -04:00
16 lines
274 B
Nix
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";
|
|
};
|
|
};
|
|
}
|