about summary refs log tree commit diff
path: root/users/flokli/nixos/archeology-ec2/configuration.nix
blob: af10771adc44cb22622ac8422a56d506d267ec16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ depot, pkgs, modulesPath, ... }:

{
  imports = [
    "${modulesPath}/virtualisation/amazon-image.nix"
    ../profiles/archeology.nix
  ];

  environment.systemPackages = [
    depot.users.flokli.archeology.parse-bucket-logs
  ];

  networking.hostName = "archeology-ec2";

  system.stateVersion = "23.05"; # Did you read the comment?
}