summary refs log tree commit diff
path: root/machines/lapin/default.nix
blob: 4940df6c7bec9b6cd0a6a8627a63765ea3c5ac5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ me, config, ... }:

{
  imports = [
    ../../modules/common.nix

    ./hardware.nix
    ./devices.nix

    ../../modules/www

    ../../services/conduwuit.nix
    ../../services/pds.nix
    ../../services/akkoma
  ];

  foundation.monitoring = {
    client.enable = true;
    services = [ "base" "akkoma" "pds" "conduwuit" ];
  };

  system.stateVersion = "23.05";
}