summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 95430cd..f6bbb28 100644
--- a/flake.nix
+++ b/flake.nix
@@ -11,10 +11,9 @@
pkgs = import nixpkgs {
inherit system;
};
- packageSet = pkgs.callPackage ./default.nix {
- pkgs = pkgs;
- };
in {
- packages.${system} = packageSet;
+ packages.${system} = pkgs.callPackage ./lib/core/.nix/derivation.nix {
+ inherit pkgs;
+ };
};
}