mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 02:04:09 -05:00
16 lines
314 B
Nix
16 lines
314 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
lib.mkIf config.user.live.enable {
|
|
config.users.users.live = {
|
|
isNormalUser = true;
|
|
initialPassword = "live";
|
|
extraGroups = ["wheel" "networkmanager" "audio" "plugdev"];
|
|
openssh.authorizedKeys.keyFiles = [
|
|
inputs.nix-secrets.keys.default
|
|
];
|
|
};
|
|
}
|