aboutsummaryrefslogtreecommitdiff
path: root/nix/systems/spontaneity/default.nix
blob: 89b3ce6ac4e84af4070f8ec1e49831234b4cfe5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, ... }:
{
  imports = [
    ../../modules/default.nix
  ];
  config.monorepo = {
    profiles = {
      home.enable = false;
      server.enable = true;
    };
    vars.hostName = "spontaneity";
  };
}