nixos-config/users/jill.nix

12 lines
255 B
Nix
Raw Permalink Normal View History

2024-03-17 09:21:24 -07:00
{pkgs, ...}: {
# Define a user account. Don't forget to set a password with passwd.
users.users.jill = {
isNormalUser = true;
description = "Jill";
extraGroups = [ "networkmanager" "wheel" "docker" ];
shell = pkgs.fish;
};
}