aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index db95c0cd..0965e1d0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,11 +26,14 @@
];
};
};
+
+ module = import ./nix/module.nix {extraPackages = {inherit turtle;};};
in {
packages."${system}" = {
inherit turtle;
default = self.outputs.packages.${system}.turtle;
};
+ nixosModules.default = module;
checks."${system}".default = tests;