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

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