blob: f8fc2f6cf30f389e430adc07532275a1bcea3f8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ config, lib, pkgs, inputs, ... }:
{
users.users = {
root.hashedPasswordFile = "/secrets/passwords/root";
"c" = {
isNormalUser = true;
hashedPasswordFile = "/secrets/passwords/c";
extraGroups = [ "wheel" "minecraft" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIDO8JxqS7B2n3YlNtlVMZGARi+GG/z7wLiiyl52qSZc caroline@larimo.re" # c-pc
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICGftQ5W8QMIVhgDijreliiMgIqwQvxwTkpMftJdQWu+ caroline@larimo.re" # phoenix
];
};
};
}
|