about summary refs log tree commit diff
path: root/users/glittershark/system/system/machines/roswell.nix
blob: 4b0cdec95d18ecfbb1c75940e34f2ea5495761e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ depot, 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 = [
    depot.users.glittershark.keys.main
  ];
}