nix: remove redundant arg

This commit is contained in:
raf 2025-01-08 11:09:05 +03:00
parent 0e6979f684
commit 60612360f8
No known key found for this signature in database
GPG key ID: EED98D11B85A2819

View file

@ -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 {};
});
};
}