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