summaryrefslogtreecommitdiff
path: root/os/dspace/modules/network.nix
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2025-06-10 15:50:59 +0530
committersinanmohd <sinan@sinanmohd.com>2025-06-10 22:55:02 +0530
commit5db58cfe0eba71660c96639ee2c3f915023213f1 (patch)
treeef5630d74b909e1a0d865a7c4593e776658a409b /os/dspace/modules/network.nix
parente112181c35f3ad6d9469448d487bee668dd19b0b (diff)
dspace: drop
Diffstat (limited to 'os/dspace/modules/network.nix')
-rw-r--r--os/dspace/modules/network.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/os/dspace/modules/network.nix b/os/dspace/modules/network.nix
deleted file mode 100644
index 007cfba..0000000
--- a/os/dspace/modules/network.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ ... }:
-
-let
- wan = "ens18";
-in
-{
- networking = {
- interfaces.${wan}.ipv4.addresses = [{
- address = "10.0.8.107";
- prefixLength = 16;
- }];
- defaultGateway = {
- address = "10.0.0.1";
- interface = wan;
- };
- nameservers = [ "10.0.0.2" "10.0.0.3" ];
- };
-}