tvl-depot/users/sterni/machines/ingeborg/default.nix
sterni 19eafa3b9b chore(sterni/machines/ingeborg): remove gopher related configs
The gopher server has been disabled for a while and I'm probably not
going to revive it any time soon (though I should fix some stuff on
spacecookie soon-ish…).

Change-Id: I6ef6bbfc013f9924e2d2b7ba116285a32406e5a7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12901
Reviewed-by: sterni <sternenseemann@systemli.org>
Autosubmit: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
2024-12-21 21:27:13 +00:00

32 lines
794 B
Nix

{ 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
./quassel.nix
# Inactive:
# ./http/likely-music.sterni.lv.nix
# TODO(sterni): fail2ban
# TODO(sterni): automatic backups for full recovery
];
config = {
system.stateVersion = "24.05";
};
}