mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
22 lines
385 B
Nix
22 lines
385 B
Nix
{meta, ...}: {
|
|
imports = let
|
|
inherit (meta) nixos;
|
|
in [
|
|
nixos.sops
|
|
nixos.ct.meiling
|
|
nixos.tailscale
|
|
nixos.syncthing-kat
|
|
];
|
|
|
|
services = {
|
|
prometheus.exporters.node.enable = false;
|
|
promtail.enable = false;
|
|
};
|
|
|
|
sops = {
|
|
defaultSopsFile = ./secrets.yaml;
|
|
secrets.tailscale-key.key = "tailscale-key";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|