mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
13 lines
342 B
Nix
13 lines
342 B
Nix
{ lib, ... }: let
|
|
inherit (lib.modules) mkForce;
|
|
in {
|
|
config.users = {
|
|
users.nixbld = {
|
|
isNormalUser = true;
|
|
isSystemUser = mkForce false;
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHV6OZ3JfVwtRhfsxYTNbh6IReZycMmfaRQrKVppX6CB extern@gensokyo-infrastructure"
|
|
];
|
|
};
|
|
};
|
|
}
|