nixos-config/components/network/default.nix
Ingolf Wagner 26aaec9101
All checks were successful
Build all NixOS Configurations / nix build (push) Successful in 12m39s
fixing fail2ban and set up ssh + tor on chungus
2024-08-08 19:25:19 +02:00

25 lines
357 B
Nix

{ pkgs, lib, ... }:
with lib;
with types;
{
options.components.network = {
enable = mkOption {
type = bool;
default = true;
};
};
imports = [
#./avahi.nix
./hosts.nix
./nginx.nix
./sshd
./syncthing.nix
./tinc
./wifi.nix
./wireguard.nix
];
config = mkIf config.components.network.enable { };
}