about summary refs log tree commit diff
path: root/users/sterni/machines/ingeborg/default.nix
blob: 0e5a30a7c82983d94e54f146539a5edbfd4f7711 (plain) (blame)
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
{ config, lib, pkgs, depot, ... }:

{
  imports = [
    # Third party modules
    "${depot.third_party.agenix.src}/modules/age.nix"
    # Basic settings
    ../../modules/common.nix
    # These modules touch things related to booting (filesystems, initrd network…)
    ./hardware.nix
    ./network.nix
    # (More or less) pluggable service configuration
    (depot.path.origSrc + "/ops/modules/btrfs-auto-scrub.nix")
    ./monitoring.nix
    ./minecraft.nix
    ./http/sterni.lv.nix
    ./http/code.sterni.lv.nix
    ./http/flipdot.openlab-augsburg.de.nix
    ./tv.nix

    # Inactive:
    # ./http/likely-music.sterni.lv.nix
    # ./gopher.nix

    # TODO(sterni): fail2ban
    # TODO(sterni): automatic backups for full recovery
  ];

  config = {
    system.stateVersion = "24.05";
  };
}