diff options
Diffstat (limited to 'users/glittershark/system/system/machines/roswell.nix')
-rw-r--r-- | users/glittershark/system/system/machines/roswell.nix | 17 |
1 files changed, 17 insertions, 0 deletions
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 + ]; +} |