mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-13 02:34:05 -05:00
7 lines
193 B
Nix
7 lines
193 B
Nix
{ lib, config, ...}: {
|
|
config.users.users.vault = lib.mkIf config.users.vault.enable {
|
|
isNormalUser = true;
|
|
initialPassword = "changeme";
|
|
extraGroups = [];
|
|
};
|
|
}
|