mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
25 lines
404 B
Nix
25 lines
404 B
Nix
{
|
|
meta,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = let
|
|
inherit (meta) nixos;
|
|
in [
|
|
nixos.sops
|
|
nixos.reisen-ct
|
|
nixos.tailscale
|
|
nixos.minecraft.katsink
|
|
];
|
|
|
|
environment.systemPackages = [
|
|
config.services.minecraft-katsink-server.jre.package
|
|
];
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets.tailscale-key.key = "tailscale-key";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|