1
1
Fork 0

beatific: add centroid key

This commit is contained in:
Tim Van Baak 2024-01-18 23:53:57 +00:00
parent 22ec014c38
commit 6f3c75e53c
4 changed files with 16 additions and 12 deletions

14
keys/default.nix Normal file
View File

@ -0,0 +1,14 @@
{
tvb = [
./nix-on-droid.vagrant.pub
./tvb.backyard.pub
./tvb.catacomb.pub
./tvb.centroid.pub
./tvb.empyrean.pub
./tvb.imperium.pub
./tvb.palamas.pub
./tvb.stagirite.pub
./tvb.unfolder.pub
./tvb.vagrant.pub
];
}

1
keys/tvb.centroid.pub Normal file
View File

@ -0,0 +1 @@
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC364peKQVWeqFNzhJJkvHumKerKPkczeX2I/e9FFZyL tvb@centroid

View File

@ -12,7 +12,6 @@
programs = false;
ssh = false;
nebula = false;
tvb = false;
tvbSync = false;
hosts = false;
};

View File

@ -184,17 +184,7 @@ in {
group = "tvb";
extraGroups = [ "wheel" ];
initialPassword = "password";
openssh.authorizedKeys.keyFiles = [
../keys/nix-on-droid.vagrant.pub
../keys/tvb.backyard.pub
../keys/tvb.catacomb.pub
../keys/tvb.empyrean.pub
../keys/tvb.imperium.pub
../keys/tvb.palamas.pub
../keys/tvb.stagirite.pub
../keys/tvb.unfolder.pub
../keys/tvb.vagrant.pub
];
openssh.authorizedKeys.keyFiles = (import ../keys).tvb;
};
})