feat: Add warp server configuration for Intel NUC 13th gen

- Add new NixOS configuration for 'warp' server
- Configure for Intel NUC 13th gen CPU platform
- Disable desktop environment (headless server)
- Enable SSH with security hardening (no password auth, no root login)
- Configure Docker and Podman for containerized workloads
- Add performance tuning for network and memory buffers
- Include 8GB swap file configuration
- Enable Intel IOMMU for virtualization support
- Add thermal monitoring and power management
This commit is contained in:
Julian Sutter 2026-02-03 22:45:25 -08:00
parent 82a98a1e6f
commit 78ea16d120
2 changed files with 78 additions and 0 deletions

View file

@ -81,6 +81,13 @@
./desktop/3dprinting.nix
];
};
warp = mkSystem {
modules = [
./systems/common.nix
./users/jsutter.nix
./systems/warp.nix
];
};
};
};
}