remove stale keys

This commit is contained in:
Grigory Shipunov 2025-01-02 20:37:22 +00:00
parent 5c9d04d69b
commit 8534d387bd
4 changed files with 6 additions and 6 deletions

View file

@ -77,6 +77,8 @@
./hosts/cloud
./modules/basic-tools
./modules/server
./modules/binary-caches.nix
];
};
minime = nixpkgs-stable.lib.nixosSystem {
@ -88,6 +90,7 @@
./hosts/minime
./modules/basic-tools
./modules/server
./modules/binary-caches.nix
];
};
};

View file

@ -14,18 +14,21 @@
"https://dump-dvb.cachix.org"
"https://tlm-solutions.cachix.org"
"https://nix-community.cachix.org"
"https://hydra.hq.c3d2.de"
];
trusted-substituters = [
"https://microvm.cachix.org"
"https://dump-dvb.cachix.org"
"https://tlm-solutions.cachix.org"
"https://nix-community.cachix.org"
"https://hydra.hq.c3d2.de"
];
trusted-public-keys = [
"microvm.cachix.org-1:oXnBc6hRE3eX5rSYdRyMYXnfzcCxC7yKPTbZXALsqys="
"dump-dvb.cachix.org-1:+Dq7gqpQG4YlLA2X3xJsG1v3BrlUGGpVtUKWk0dTyUU="
"tlm-solutions.cachix.org-1:J7qT6AvoNWPSj+59ed5bNESj35DLJNaROqga1EjVIoA="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"hydra.hq.c3d2.de:KZRGGnwOYzys6pxgM8jlur36RmkJQ/y8y62e52fj1ps="
];
};
};

View file

@ -10,9 +10,6 @@
security.sudo.enable = true;
users.users."0xa" = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHv82n6F6kwJ3/EMYlOoCc1/NaYFW7QHC5F8jKVzdlio gshipunov@toaster"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA3to/h8Myn+zXAkjboaRVqOfmtDz7VpIHhHbaRoYyPX g.shipunov@uva.nl"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICPPG1va3CG8uAXV+ACRFPdi8FicpdOyXqb7eSZJCPXx pixel"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9iYG5oHBq/poBn7Jf1/FGWWbAnbx+NKjs7qtT3uAK 0xa@toaster 2024-12-31"
];
extraGroups = [

View file

@ -10,9 +10,6 @@
networking.firewall.allowedTCPPorts = [ 22 2020 ];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHv82n6F6kwJ3/EMYlOoCc1/NaYFW7QHC5F8jKVzdlio gshipunov@toaster"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIA3to/h8Myn+zXAkjboaRVqOfmtDz7VpIHhHbaRoYyPX g.shipunov@uva.nl"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAlRhs/h3zTfonh/8wTZPEHnLAWXtedpF3ulJOwDbTGL owner@pixel"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJl9iYG5oHBq/poBn7Jf1/FGWWbAnbx+NKjs7qtT3uAK 0xa@toaster 2024-12-31"
];
}