mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
26 lines
421 B
Nix
26 lines
421 B
Nix
{
|
|
meta,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = let
|
|
inherit (meta) nixos;
|
|
in [
|
|
nixos.sops
|
|
nixos.reisen-ct
|
|
nixos.tailscale
|
|
nixos.kyuuto.mount
|
|
nixos.minecraft.java
|
|
];
|
|
|
|
environment.systemPackages = [
|
|
config.services.minecraft-java-server.jre.package
|
|
];
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets.tailscale-key.key = "tailscale-key";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|