aboutsummaryrefslogtreecommitdiff
path: root/snowfall/systems/x86_64-linux/copenhagen/default.nix
blob: ef30464760d02799baad7e8eec8bb9e470dbc24b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib, pkgs, namespace, ... }:

with lib; with lib.${namespace}; {
  imports = [
    ./hardware.nix
    ./network.nix
  ];

  cxl = {
    system = {
      hostname = "copenhagen";
      id = "a50062ff";
      
      impermanence.enable = true;
      impermanence.home.enable = true;
    };

    services = {
      web = {
        images.enable = true;
        stargazers.enable = true;
      };

      minecraft = {
        stargazers = {
          enable = true;
          port = 25566;
        };
      };
    };
  };

  system.stateVersion = "23.11";
}