17 lines
381 B
Nix
17 lines
381 B
Nix
|
{pkgs, ...}: {
|
||
|
users.users.elitherl = {
|
||
|
isNormalUser = true;
|
||
|
description = "Evie Litherland-Smith";
|
||
|
extraGroups = ["networkmanager" "wheel"];
|
||
|
shell = pkgs.fish;
|
||
|
};
|
||
|
home-manager.users.elitherl = {
|
||
|
imports = [../../home/work.nix];
|
||
|
home = {
|
||
|
username = "elitherl";
|
||
|
homeDirectory = "/home/elitherl";
|
||
|
stateVersion = "22.11";
|
||
|
};
|
||
|
};
|
||
|
}
|