Compare commits

...

2 Commits

Author SHA1 Message Date
Noah Masur
6edc828ece
pass pkgs-caddy to arrow 2024-05-07 20:09:51 -04:00
Noah Masur
4b22c774e2
try enabling checksum mode on s3 to get checksum values 2024-05-07 20:08:33 -04:00
2 changed files with 7 additions and 3 deletions

View File

@ -326,9 +326,12 @@
in
{
x86_64-linux.staff = staff "x86_64-linux";
x86_64-linux.arrow = inputs.nixos-generators.nixosGenerate {
x86_64-linux.arrow = inputs.nixos-generators.nixosGenerate rec {
system = "x86_64-linux";
format = "iso";
specialArgs = {
pkgs-caddy = import inputs.nixpkgs-caddy { inherit system; };
};
modules = import ./hosts/arrow/modules.nix { inherit inputs globals overlays; };
};
x86_64-linux.arrow-aws = inputs.nixos-generators.nixosGenerate rec {

View File

@ -12,8 +12,9 @@
# Use existing image in S3
data "aws_s3_object" "image" {
bucket = var.images_bucket
key = "arrow.vhd"
bucket = var.images_bucket
key = "arrow.vhd"
checksum_mode = "ENABLED"
}
# Setup IAM access for the VM Importer