summaryrefslogtreecommitdiff
path: root/systems/atlas/default.nix
blob: 9f2f6b0f8058b95885d564922aa957ba54c64ea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{modulesPath, ...}: {
  imports = [
    (modulesPath + "/profiles/minimal.nix")
    ./hardware-configuration.nix
    ./miniflux.nix
    ./nginx.nix
    ./teawiebot.nix
  ];

  archetypes.server.enable = true;
  base.networking.enable = false;

  boot = {
    loader.systemd-boot.enable = true;
    loader.efi.canTouchEfiVariables = true;
  };

  networking.domain = "getchoo.com";

  system.stateVersion = "23.05";
}