tvl-depot/users/sterni/machines/ingeborg/default.nix
sterni 889e0a0168 feat(sterni/ingeborg): add tv user for accessing media archive
Change-Id: I8070b44b15b585e32d4939515d742a2800a2d762
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10641
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Autosubmit: sterni <sternenseemann@systemli.org>
2024-01-16 15:52:14 +00:00

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