Files
sixnix/flake.nix
Konarak 01a77e65a6 update overall module structure, remove host-specific config files
- update flake.nix to reflect new structure
- update modules/default.nix imports
- update modules/network.nix and wireguard.nix
- remove config/configuration.nix and hardware-configuration.nix
- remove modules/access.nix from this module's scope
2025-09-30 21:14:06 +05:30

13 lines
291 B
Nix

{
description = "Simple WireGuard tunnelbroker, with optional failover using BGP";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }: {
nixosModules.default = import ./modules;
nixosModules.sixnix = import ./modules;
};
}