dotfiles/modules/aws/default.nix

16 lines
323 B
Nix
Raw Normal View History

2024-04-14 12:08:57 +00:00
{ ... }:
{
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;
};
};
}