24 lines
521 B
Nix
24 lines
521 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";
|
|
packages = with pkgs; [
|
|
zotero
|
|
openfortivpn
|
|
nomachine-client
|
|
teams-for-linux
|
|
zoom-us
|
|
];
|
|
};
|
|
};
|
|
}
|