diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:56:59 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:54 -0700 |
| commit | e486d896215e7ef04438809952bc7317512d5765 (patch) | |
| tree | 01056384b090c6081668fd3347237bbc94d3fdde /snowfall/systems/x86_64-linux/copenhagen/default.nix | |
| parent | 2667d3877d72f6cf3aa310203262631e43fe6d71 (diff) | |
migration: copenhagen c user
Diffstat (limited to 'snowfall/systems/x86_64-linux/copenhagen/default.nix')
| -rw-r--r-- | snowfall/systems/x86_64-linux/copenhagen/default.nix | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/snowfall/systems/x86_64-linux/copenhagen/default.nix b/snowfall/systems/x86_64-linux/copenhagen/default.nix index e7f7a35..e893f43 100644 --- a/snowfall/systems/x86_64-linux/copenhagen/default.nix +++ b/snowfall/systems/x86_64-linux/copenhagen/default.nix @@ -51,11 +51,25 @@ with lib; with lib.${namespace}; { snowfallorg.users."c" = { admin = true; + + config = { + cxl.tools.git.key = "DE64538967CA0C68"; + }; }; users.users = { root.hashedPasswordFile = "/secrets/passwords/root"; - "c".hashedPasswordFile = "/secrets/passwords/c"; + + "c" = { + hashedPasswordFile = "/secrets/passwords/c"; + + openssh.authorizedKeys.keys = [ + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDO8JxqS7B2n3YlNtlVMZGARi+GG/z7wLiiyl52qSZc caroline@larimo.re" # c-pc + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICGftQ5W8QMIVhgDijreliiMgIqwQvxwTkpMftJdQWu+ caroline@larimo.re" # phoenix + ]; + + extraGroups = [ "minecraft" ]; + }; }; system.stateVersion = "23.11"; |