summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/flake.nix b/flake.nix
index 31d07e4..df21786 100644
--- a/flake.nix
+++ b/flake.nix
@@ -111,14 +111,16 @@
formatter = pkgs.alejandra;
homeConfigurations = mapHMUsers inputs system;
-
- packages = {
- turret = pkgs.callPackage ./hosts/turret {inherit openwrt-imagebuilder;};
- };
})
// {
nixosConfigurations = mapHosts inputs;
nixosModules.getchoo = import ./modules;
+
+ packages.x86_64-linux = let
+ pkgs = import nixpkgs {system = "x86_64-linux";};
+ in {
+ turret = pkgs.callPackage ./hosts/turret {inherit openwrt-imagebuilder;};
+ };
};
}