refactor(nix): cleanup package

This commit is contained in:
seth 2024-08-06 23:43:22 -04:00 committed by Sefa Eyeoglu
parent 55bc54722e
commit 8f4afa9d00
3 changed files with 70 additions and 77 deletions

View file

@ -85,7 +85,7 @@
};
in
{
refraction = pkgs.callPackage ./nix/derivation.nix { inherit self; };
refraction = pkgs.callPackage ./nix/package.nix { };
static-x86_64 = mkStatic { arch = "x86_64"; };
static-aarch64 = mkStatic { arch = "aarch64"; };
@ -97,7 +97,7 @@
);
overlays.default = _: prev: {
refraction = prev.callPackage ./nix/derivation.nix { inherit self; };
refraction = prev.callPackage ./nix/package.nix { };
};
};
}