new base image
All checks were successful
Hello World / test (push) Successful in 3s

This commit is contained in:
plasmagoat 2025-06-07 04:33:52 +02:00
parent 558b3f33c5
commit dd7b32ac51
5 changed files with 29 additions and 11 deletions

View file

@ -70,9 +70,9 @@
################################################################################
# 1) Existing Proxmox “base” image generator
base = nixos-generators.nixosGenerate {
proxmoxTemplate = nixos-generators.nixosGenerate {
system = "x86_64-linux";
modules = [ ./templates/base.nix ];
modules = [ ./base.nix ];
format = "proxmox"; # outputs a .vma.zst suitable for qmrestore
};
@ -100,7 +100,7 @@
# • docker → `nix build .#docker` (docker template)
################################################################################
packages.x86_64-linux = {
base = base;
proxmoxTemplate = proxmoxTemplate;
docker = docker;
};
};