aboutsummaryrefslogtreecommitdiff
path: root/nix/systems/spontaneity/default.nix
blob: ae79429ddb439b3e1cfd7807d46e66eddc0c4e95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, ... }:
{
  imports = [
    ../../modules/default.nix
    ../../modules/vda-simple.nix
    ../home.nix
  ];

  config.monorepo = {
    profiles = {
      server.enable = true;
      ttyonly.enable = true;
      grub.enable = true;
    };
    vars.hostName = "spontaneity";
  };
}