From 2fb6c382d541c85669c24739bc1d166a1c51dc14 Mon Sep 17 00:00:00 2001 From: truxnell <19149206+truxnell@users.noreply.github.com> Date: Thu, 21 Mar 2024 21:30:11 +1100 Subject: [PATCH] fix: iso module --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index a79a442..8962c42 100644 --- a/flake.nix +++ b/flake.nix @@ -104,13 +104,14 @@ ./nixos/hosts/images/sd-image ]; }; - # nix build .#images.rpi4 + # nix build .#images.iso iso = nixpkgs.lib.nixosSystem { inherit specialArgs; modules = defaultModules ++ [ "${nixpkgs}/nixos/modules/installer/cd-dvd/channel.nix" - ./nixos/hosts/images/sd-image + "${nixpkgs}/nixos/modules/installer/cd-dvd/iso-image.nix" + ./nixos/hosts/images/cd-dvd ]; }; };