add damocles-lab container

This commit is contained in:
müde 2026-04-29 21:38:40 +02:00
parent 1366030c9b
commit 27a71e94ce
5 changed files with 88 additions and 43 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, ... }:
{
imports = [../damocles/claude-container.nix];
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; [
];
}