1
Fork 0
nixos-system-config/users/user.nix

21 lines
400 B
Nix
Raw Normal View History

2023-06-24 23:09:01 +02:00
{ ... }:
2023-05-24 21:35:59 +02:00
2023-06-18 22:52:24 +02:00
{
users.users.user = {
isNormalUser = true;
2023-06-24 23:09:01 +02:00
passwordFile = "/nix/config/pw"; # mkpasswd in config dir
2023-06-18 22:52:24 +02:00
description = "user";
extraGroups = [
"wheel"
"audio"
"video"
"docker"
"podman"
"networkmanager"
"kvm"
"libvirt"
"plugdev"
];
};
2023-05-24 21:35:59 +02:00
}