tvl-depot/users/sterni/machines/ingeborg/default.nix
sterni 275bf10ab5 chore(sterni/machines): move minecraft from edwin to ingeborg
Change-Id: I6917a9633c998148d6e5d23b17d949ee007898e5
Reviewed-on: https://cl.tvl.fyi/c/depot/+/10180
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
2023-11-30 21:27:08 +00:00

21 lines
522 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
];
config = {
system.stateVersion = "24.05";
};
}