nixos/src/system/machines/server/default.nix
Bryan Ramos 960904cbd9 Add machines.keys config and reorganize key structure
- Add config.machines.keys for machine-specific keys (private keys live on that machine)
- Move desktop SSH key to machines.keys.desktop.ssh
- Fix extractName to preserve "yubikey" (only strip .key/.pub extensions)
- Rename key files for clarity (android -> graphone, primary -> yubikey)
- Add age yubikey key for encrypted backups
- Add README files to document key purposes
- Update all machine configs to import system config
2026-03-12 15:17:46 -04:00

10 lines
111 B
Nix

{ ... }:
{
imports = [
../../../user/config
../../config
./hardware.nix
./system.nix
];
}