2023-11-25 20:04:52 +01:00
|
|
|
{ config, lib, pkgs, depot, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
2023-11-30 18:38:31 +01:00
|
|
|
# Third party modules
|
|
|
|
"${depot.third_party.agenix.src}/modules/age.nix"
|
2023-11-25 20:04:52 +01:00
|
|
|
# Basic settings
|
|
|
|
../../modules/common.nix
|
|
|
|
# These modules touch things related to booting (filesystems, initrd network…)
|
|
|
|
./hardware.nix
|
|
|
|
./network.nix
|
2023-11-26 12:54:19 +01:00
|
|
|
# (More or less) pluggable service configuration
|
|
|
|
(depot.path.origSrc + "/ops/modules/btrfs-auto-scrub.nix")
|
2023-11-30 17:26:20 +01:00
|
|
|
./monitoring.nix
|
2023-11-30 22:18:25 +01:00
|
|
|
./minecraft.nix
|
2023-12-31 00:19:22 +01:00
|
|
|
./http/sterni.lv.nix
|
|
|
|
./http/code.sterni.lv.nix
|
|
|
|
./http/flipdot.openlab-augsburg.de.nix
|
2024-01-13 22:34:40 +01:00
|
|
|
./tv.nix
|
2024-04-27 12:31:24 +02:00
|
|
|
./quassel.nix
|
2023-12-31 00:19:22 +01:00
|
|
|
|
|
|
|
# Inactive:
|
|
|
|
# ./http/likely-music.sterni.lv.nix
|
|
|
|
# ./gopher.nix
|
|
|
|
|
|
|
|
# TODO(sterni): fail2ban
|
|
|
|
# TODO(sterni): automatic backups for full recovery
|
2023-11-25 20:04:52 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
config = {
|
|
|
|
system.stateVersion = "24.05";
|
|
|
|
};
|
|
|
|
}
|