15 lines
408 B
Nix
15 lines
408 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.sara = {
|
|
# Left empty so no password is needed in iso
|
|
initialPassword = "";
|
|
isNormalUser = true;
|
|
description = "Sara Gerretsen";
|
|
extraGroups = [ "networkmanager" "wheel" "sudo" "adm" "video" ];
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIBhmYV/SSGScbig1xXa7EHFwaxtD0e0QCorPUromR0nM sara@fedora-fw"
|
|
];
|
|
};
|
|
}
|