feat: add iso installer target (to be completed..)

This commit is contained in:
Xavier Morel
2025-07-02 17:52:05 +02:00
parent d97623aa2e
commit 39c7b58406
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{ pkgs, modulesPath, system, ... }:
{
imports = [
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
];
nixpkgs.hostPlatform = system;
}