Files
nixos/system/modules/users.nix

17 lines
225 B
Nix
Raw Normal View History

2026-02-22 19:54:17 +00:00
{ config, pkgs, ... }:
{
users.users.chris = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"wheel"
"docker"
"qemu"
"kvm"
"libvirtd"
"networkmanager"
];
};
}