From 60612360f8e8ba70997386bbc8faacb4e4ec5efe Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Wed, 8 Jan 2025 11:09:05 +0300 Subject: [PATCH] nix: remove redundant arg --- flake.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 90d044c..dc92d75 100644 --- a/flake.nix +++ b/flake.nix @@ -21,9 +21,7 @@ }); devShells = forEachSystem (system: { - default = pkgsForEach.${system}.callPackage ./nix/shell.nix { - packagePath = ./nix/package.nix; - }; + default = pkgsForEach.${system}.callPackage ./nix/shell.nix {}; }); }; }