nix: fix overlays config

This commit is contained in:
Harsh Shandilya 2024-01-30 03:15:28 +05:30
parent 3d26130801
commit 1b967200c2
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@
};
in {
packages = eachSystem (system: packagesFn pkgs.${system});
overlays.default = packagesFn;
overlays.default = _: prev: packagesFn prev;
githubActions = nix-github-actions.lib.mkGithubMatrix {
checks = nixpkgs.lib.getAttrs ["x86_64-linux"] self.packages;
};