From 589ed68eeffce66186a309f6d76143d96e83ccdd Mon Sep 17 00:00:00 2001 From: teutat3s Date: Mon, 4 Jul 2022 22:52:53 +0200 Subject: [PATCH] Use new flake default packages..default Introduced in nix 2.7.0 https://discourse.nixos.org/t/nix-2-7-0-released/18072 defaultPackage. got renamed to packages..default --- vmtools/flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vmtools/flake.nix b/vmtools/flake.nix index fcbdc04..16094d7 100644 --- a/vmtools/flake.nix +++ b/vmtools/flake.nix @@ -17,8 +17,7 @@ # These get source'd in devshell.bash.extra when starting tritonshell packages = { triton-vmtools = triton-vmtools; + default = triton-vmtools; }; - - defaultPackage = triton-vmtools; }); }