From 39f74c0f52d96a94c8b774cee441cd7f375a6df2 Mon Sep 17 00:00:00 2001 From: DavHau Date: Mon, 17 Jun 2024 14:34:04 +0700 Subject: [PATCH] fix: remove IFD in nix flake show --- templates/flake-module.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/flake-module.nix b/templates/flake-module.nix index a20ebd3b..aa1eaf39 100644 --- a/templates/flake-module.nix +++ b/templates/flake-module.nix @@ -31,5 +31,9 @@ clan-core = self; }; in - evaled.nixosConfigurations.foo.config.system.build.vm; + { + type = "derivation"; + name = "minimal-clan-flake-check"; + inherit (evaled.nixosConfigurations.foo.config.system.build.vm) drvPath outPath; + }; }