18 lines
352 B
Nix
18 lines
352 B
Nix
{ inputs, config, lib, ... }:
|
|
let
|
|
username = "jhemono";
|
|
in
|
|
{
|
|
|
|
users.users.${username} = {
|
|
description = "Julien Hémono";
|
|
isNormalUser = true;
|
|
createHome = true;
|
|
extraGroups = [ "wheel" ];
|
|
# openssh.authorizedKeys.keys = info.authorizedKeys;
|
|
initialPassword = "cheval";
|
|
};
|
|
|
|
nix.settings.trusted-users = [ username ];
|
|
|
|
}
|