feat: flake NixOS config for jupiter + VirtualBox test image

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
erik
2026-07-11 16:09:32 +02:00
co-authored by Claude Opus 4.8
commit bb4823efe9
7 changed files with 277 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{ config, pkgs, lib, ... }:
# Real-host config: hardware + bootloader + shared services.
{
imports = [
./hardware-configuration.nix
./services.nix
];
# ---- Boot ----
# systemd-boot for UEFI. If ZimaBlade boots legacy/BIOS, switch to grub.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}