dotfiles/hosts/aws/default.nix

33 lines
900 B
Nix
Raw Normal View History

{ inputs, globals, ... }:
with inputs;
2022-09-20 04:01:45 +00:00
nixos-generators.nixosGenerate {
2022-09-20 04:01:45 +00:00
inherit system;
format = "amazon";
modules = [
2022-09-20 04:01:45 +00:00
home-manager.nixosModules.home-manager
{
user = globals.user;
fullName = globals.fullName;
dotfilesRepo = globals.dotfilesRepo;
gitName = globals.gitName;
gitEmail = globals.gitEmail;
2022-09-20 04:01:45 +00:00
networking.hostName = "sheep";
gui.enable = false;
colorscheme = (import ../modules/colorscheme/gruvbox);
2022-10-18 12:21:22 +00:00
passwordHash = null;
2022-09-20 11:50:45 +00:00
publicKey =
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s";
# AWS settings require this
permitRootLogin = "prohibit-password";
2022-09-20 04:01:45 +00:00
}
2022-10-18 12:17:58 +00:00
../../hosts/common.nix
../../modules/nixos
../../modules/services/sshd.nix
] ++ [
# Required to fix diskSize errors during build
({ ... }: { amazonImage.sizeMB = 16 * 1024; })
2022-09-20 04:01:45 +00:00
];
}