diff options
| author | seth <[email protected]> | 2023-04-17 12:13:53 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-04-17 12:13:53 -0400 |
| commit | b6c93c98510a8e60121572d2a7612e6fe3924f32 (patch) | |
| tree | 56f14438fcdf21f5a5f6d8dae52f3dc226e24250 /flake.nix | |
| parent | 354cc21b53b68c2944bbba6922129f6d21858ab2 (diff) | |
fix flake check
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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;}; + }; }; } |
