diff --git a/flake.nix b/flake.nix index 135a05a..8318810 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,13 @@ localSystem.system = system; }); in { + overlays = { + superfreq = final: _: { + superfreq = final.callPackage ./nix/package.nix {}; + }; + default = self.overlays.superfreq; + }; + packages = forAllSystems (system: { superfreq = pkgsForEach.${system}.callPackage ./nix/package.nix {}; default = self.packages.${system}.superfreq;