From bcea9cd0b37b533f55f9b73286e7a8db2c33f858 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Mon, 14 Dec 2020 12:44:31 -0500 Subject: feat(gs/system): Init roswell An ec2 node I'm using as a remote dev box Change-Id: I7d81371ecdc11d6c1b5bc06d1b4f55de534d25ad Reviewed-on: https://cl.tvl.fyi/c/depot/+/2244 Tested-by: BuildkiteCI Reviewed-by: glittershark --- users/glittershark/system/system/machines/roswell.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 users/glittershark/system/system/machines/roswell.nix (limited to 'users/glittershark/system/system/machines') diff --git a/users/glittershark/system/system/machines/roswell.nix b/users/glittershark/system/system/machines/roswell.nix new file mode 100644 index 000000000000..c0ed2264a0e0 --- /dev/null +++ b/users/glittershark/system/system/machines/roswell.nix @@ -0,0 +1,17 @@ +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = [ + ../modules/common.nix + "${modulesPath}/installer/scan/not-detected.nix" + "${modulesPath}/virtualisation/amazon-image.nix" + ]; + + ec2.hvm = true; + + networking.hostName = "roswell"; + + users.users.grfn.openssh.authorizedKeys.keys = [ + config.depot.users.glittershark.keys.main + ]; +} -- cgit 1.4.1