Initial commit

This commit is contained in:
HotaruBlaze
2026-05-31 09:33:14 +00:00
commit 6bce73c167
12 changed files with 698 additions and 0 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
services:
nixos:
image: nixos-builder:latest
container_name: nixos-builder
volumes:
- .:/workspace
- ./age.key:/etc/sops/keys/age.key:ro
- nix_store:/nix
- nix_cache:/root/.cache/nix
environment:
- NIX_CONFIG_DIR=/root/.config/nix
- SOPS_AGE_KEY_FILE=/etc/sops/keys/age.key
- TMPDIR=/tmp
tmpfs:
- /tmp
working_dir: /workspace
tty: true
stdin_open: true
profiles:
- default
security_opt:
- apparmor:unconfined
cap_add:
- SYS_ADMIN
volumes:
nix_store:
nix_cache: