mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
29 lines
817 B
Nix
29 lines
817 B
Nix
{ inputs, system, globals, overlays, ... }:
|
|
|
|
inputs.nixos-generators.nixosGenerate {
|
|
inherit system;
|
|
format = "amazon";
|
|
modules = [
|
|
globals
|
|
inputs.home-manager.nixosModules.home-manager
|
|
{
|
|
nixpkgs.overlays = overlays;
|
|
networking.hostName = "sheep";
|
|
gui.enable = false;
|
|
theme.colors = (import ../../colorscheme/gruvbox).dark;
|
|
passwordHash = null;
|
|
publicKeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB+AbmjGEwITk5CK9y7+Rg27Fokgj9QEjgc9wST6MA3s personal"
|
|
];
|
|
# AWS settings require this
|
|
permitRootLogin = "prohibit-password";
|
|
}
|
|
../../modules/common
|
|
../../modules/nixos
|
|
../../modules/nixos/services/sshd.nix
|
|
] ++ [
|
|
# Required to fix diskSize errors during build
|
|
({ ... }: { amazonImage.sizeMB = 16 * 1024; })
|
|
];
|
|
}
|