dotfiles/hosts/aws/default.nix

29 lines
817 B
Nix
Raw Normal View History

{ inputs, system, globals, overlays, ... }:
2023-07-02 03:00:17 +00:00
inputs.nixos-generators.nixosGenerate {
2022-09-20 04:01:45 +00:00
inherit system;
format = "amazon";
modules = [
2023-07-29 19:20:14 +00:00
globals
2023-07-02 03:00:17 +00:00
inputs.home-manager.nixosModules.home-manager
2022-09-20 04:01:45 +00:00
{
nixpkgs.overlays = overlays;
2022-09-20 04:01:45 +00:00
networking.hostName = "sheep";
gui.enable = false;
theme.colors = (import ../../colorscheme/gruvbox).dark;
2022-10-18 12:21:22 +00:00
passwordHash = null;
2024-03-24 17:16:20 +00:00
publicKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s personal"
];
# AWS settings require this
permitRootLogin = "prohibit-password";
2022-09-20 04:01:45 +00:00
}
../../modules/common
2022-10-18 12:17:58 +00:00
../../modules/nixos
../../modules/nixos/services/sshd.nix
] ++ [
# Required to fix diskSize errors during build
({ ... }: { amazonImage.sizeMB = 16 * 1024; })
2022-09-20 04:01:45 +00:00
];
}