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