summaryrefslogtreecommitdiff
path: root/hosts/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/default.nix')
-rw-r--r--hosts/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/hosts/default.nix b/hosts/default.nix
index ef269e1..4cd0381 100644
--- a/hosts/default.nix
+++ b/hosts/default.nix
@@ -1,6 +1,7 @@
{
inputs,
self,
+ withSystem,
...
}: let
inherit (import ./profiles.nix {inherit inputs self;}) personal server;
@@ -77,17 +78,15 @@ in {
};
nixosModules.getchoo = import ../modules/nixos;
+
+ # openwrt-imagebuilder seems to only work
+ # on x64
+ packages.x86_64-linux.turret =
+ withSystem "x86_64-linux"
+ (s: s.pkgs.callPackage ./turret {inherit (inputs) openwrt-imagebuilder;});
};
- perSystem = {
- pkgs,
- system,
- ...
- }: {
+ perSystem = {system, ...}: {
apps = (inputs.nixinate.nixinate.${system} self).nixinate;
-
- packages = {
- turret = pkgs.callPackage ./turret {inherit (inputs) openwrt-imagebuilder;};
- };
};
}