From c71dd30ad493040f9825a6c45420ac78507b620a Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Tue, 14 May 2024 11:12:07 -0400 Subject: [PATCH] with pkgs --- flake.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 915dc0f..bbb3ffc 100644 --- a/flake.nix +++ b/flake.nix @@ -28,6 +28,7 @@ }; in + with pkgs; { nixosConfigurations = { desktop = nixpkgs.lib.nixosSystem { @@ -80,6 +81,6 @@ ]; }; - devShells.${system}.default = pkgs.callPackage ./shell.nix {}; + devShells.${system}.default = callPackage ./shell.nix {}; }; }