nixos-configs/nixosConfigurations/damocles-lab/default.nix

17 lines
379 B
Nix
Raw Normal View History

2026-04-29 21:38:40 +02:00
{ pkgs, ... }:
{
2026-04-29 23:58:15 +02:00
imports = [ ../damocles/claude-container.nix ];
2026-04-29 21:38:40 +02:00
services.openssh = {
enable = true;
ports = [ 2222 ];
# Path written into sshd_config as a string — not read at eval time.
# Key can be rotated without a rebuild.
authorizedKeysFiles = [ "/persist/damocles-ssh/id_ed25519.pub" ];
};
environment.systemPackages = with pkgs; [
];
}