From 003ab99e35d9bb9d24e52323278d97fa9b6599e6 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Thu, 31 Dec 2020 13:50:08 -0700 Subject: [PATCH] niximg: install flakes directly within iso Fixes #63. --- hosts/niximg.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/niximg.nix b/hosts/niximg.nix index 61fbb22..823eeb6 100644 --- a/hosts/niximg.nix +++ b/hosts/niximg.nix @@ -1,10 +1,10 @@ -{ modulesPath, ... }: { +{ unstableModulesPath, ... }: { imports = [ # passwd is nixos by default ../users/nixos # passwd is empty by default ../users/root - "${modulesPath}/installer/cd-dvd/iso-image.nix" + "${unstableModulesPath}/installer/cd-dvd/iso-image.nix" ]; isoImage.makeEfiBootable = true;