adjust aws package layout

This commit is contained in:
Noah Masur 2022-11-18 22:35:00 -05:00
parent 07b5f855a6
commit e1fc3317b5

View File

@ -83,12 +83,10 @@
}; };
# Package servers into images with a generator # Package servers into images with a generator
packages.x86_64-linux = with inputs; { packages.aws = nixpkgs.lib.genAttrs [ "x86_64-linux" "aarch64-linux" ]
aws = import ./hosts/aws { (system: {
inherit inputs globals; "${system}" = import ./hosts/aws { inherit inputs globals system; };
system = "x86_64-linux"; });
};
};
apps = forAllSystems (system: apps = forAllSystems (system:
let pkgs = import nixpkgs { inherit system; }; let pkgs = import nixpkgs { inherit system; };