remove aws and clean up arrow

This commit is contained in:
Noah Masur
2024-04-14 08:08:57 -04:00
parent 1865f6985e
commit 402d168304
10 changed files with 132 additions and 419 deletions

15
modules/aws/default.nix Normal file
View File

@ -0,0 +1,15 @@
{ ... }:
{
config = {
# AWS settings require this
permitRootLogin = "prohibit-password";
# Make sure disk size is large enough
# https://github.com/nix-community/nixos-generators/issues/150
formatConfigs.amazon =
{ config, ... }:
{
amazonImage.sizeMB = 16 * 1024;
};
};
}