mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 02:04:09 -05:00
7 lines
207 B
Nix
7 lines
207 B
Nix
{ lib, config, ...}: {
|
|
config.users.users.ha = lib.mkIf config.users.ha.enable {
|
|
isNormalUser = true;
|
|
initialPassword = "changeme";
|
|
extraGroups = [ "wheel" "libvirtd" ];
|
|
};
|
|
}
|