From fc85627bd6c8f565ea50752a380066652f5dea42 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Wed, 8 Feb 2023 22:26:04 -0700 Subject: [PATCH] use unstable for ephemeral os config --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 387638f..1c10c3e 100644 --- a/flake.nix +++ b/flake.nix @@ -85,12 +85,12 @@ packages = let mkKexec = system: - (nixpkgs.lib.nixosSystem { + (nixpkgs-unstable.lib.nixosSystem { inherit system; modules = [ ./machines/ephemeral/kexec.nix ]; }).config.system.build.kexec_tarball; mkIso = system: - (nixpkgs.lib.nixosSystem { + (nixpkgs-unstable.lib.nixosSystem { inherit system; modules = [ ./machines/ephemeral/iso.nix ]; }).config.system.build.isoImage;