From a1656caa3a373ec5606d9c514a7dc81dbd57ed3e Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Wed, 30 Nov 2022 08:30:47 +0800 Subject: [PATCH] hosts/graphical-installer: fix the erroneous attribute Pretty much indicates how much I use it. :) --- hosts/graphical-installer/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/graphical-installer/default.nix b/hosts/graphical-installer/default.nix index b73bfbcc..d226f959 100644 --- a/hosts/graphical-installer/default.nix +++ b/hosts/graphical-installer/default.nix @@ -13,7 +13,7 @@ target = "/bootstrap/"; }]; storeContents = [ - self.devShell.${config.nixpkgs.system} + self.devShells.${config.nixpkgs.system}.default ] ++ builtins.attrValues inputs; };