summaryrefslogtreecommitdiff
path: root/nix/topology
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-02 00:03:12 -0800
committerPreston Pan <ret2pop@nullring.xyz>2026-03-02 00:03:12 -0800
commit9484c4ec525c02caa8a65ecfe37ed24f1d4b321d (patch)
tree676712a1504939b37a69fbee9c235dc61917cd65 /nix/topology
parenta05e0614c1bb75f77717a943dc4ac75a0cca4652 (diff)
Remove local nix directory to prepare for submodule
Diffstat (limited to 'nix/topology')
-rw-r--r--nix/topology/default.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/nix/topology/default.nix b/nix/topology/default.nix
deleted file mode 100644
index ce4fedd..0000000
--- a/nix/topology/default.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{ config, ... }:
-let
- inherit
- (config.lib.topology);
-in
-{
- nodes = {
- spontaneity = {
- interfaces.wan.network = "remote";
- };
- installer = {
- interfaces.lan.network = "home";
- };
- affinity = {
- interfaces.lan = {
- network = "home";
- physicalConnections = [
- {
- node = "spontaneity";
- interface = "wan";
- }
- {
- node = "installer";
- interface = "lan";
- }
- ];
- };
- };
- continuity = {
- interfaces.lan = {
- network = "home";
- physicalConnections = [
- {
- node = "spontaneity";
- interface = "wan";
- }
- {
- node = "affinity";
- interface = "lan";
- }
- ];
- };
- };
- };
- networks = {
- home = {
- name = "Home Network";
- cidrv4 = "192.168.1.1/24";
- };
- remote = {
- name = "Remote Network";
- cidrv4 = "144.202.27.169/32";
- };
- };
-}