infrastructure/modules/nixos/default.nix

16 lines
394 B
Nix

{ sources, lib, ... }:
{
imports = [
./nftables
./fw-abstraction
./deploy-tf
(sources.tf-nix + "/modules/nixos/secrets.nix")
(sources.tf-nix + "/modules/nixos/secrets-users.nix")
(sources.hexchen + "/modules/hexnet")
];
# stubs for hexchens modules, until more generalized
options.hexchen.dns = lib.mkOption { };
options.hexchen.deploy = lib.mkOption { };
}