infrastructure/nixos-configurations/cyprianspitz/applications/default.nix

17 lines
202 B
Nix
Raw Normal View History

2024-12-11 12:01:22 +01:00
{
config,
pkgs,
lib,
...
}:
2024-10-02 15:52:04 +02:00
{
imports = [
./backup.nix
./vpn.nix
];
qois.loadbalancer.enable = true;
2024-12-11 12:01:22 +01:00
qois.backplane-net.hosts.loadbalancers = lib.mkForce [ "cyprianspitz" ];
2024-10-02 15:52:04 +02:00
}