diff options
author | Ben Sima <ben@bsima.me> | 2025-01-15 19:21:06 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-01-15 19:21:06 -0500 |
commit | 1ff23133ff4ccdb097f7a38c28544180937a9b38 (patch) | |
tree | fa5d250a98898fe6fa8aecb7275f8841bdb16b22 /Omni | |
parent | c1bce512ef31faf044de32dc79e6191389469250 (diff) |
Move Networking.nix under Lithium
This should have been done before as it only pertains to Lithium.
Diffstat (limited to 'Omni')
-rwxr-xr-x | Omni/Dev/Lithium.nix | 2 | ||||
-rw-r--r-- | Omni/Dev/Lithium/Networking.nix (renamed from Omni/Dev/Networking.nix) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Omni/Dev/Lithium.nix b/Omni/Dev/Lithium.nix index 3063b1b..2b9f16a 100755 --- a/Omni/Dev/Lithium.nix +++ b/Omni/Dev/Lithium.nix @@ -8,8 +8,8 @@ bild.os { ../Users.nix ./Lithium/Configuration.nix ./Lithium/Hardware.nix + ./Lithium/Networking.nix ./Hoogle.nix - ./Networking.nix ./Dns.nix #./Guix.nix # I need to package a bunch of guile libs first ./Vpn.nix diff --git a/Omni/Dev/Networking.nix b/Omni/Dev/Lithium/Networking.nix index f7ea6e3..f6c242f 100644 --- a/Omni/Dev/Networking.nix +++ b/Omni/Dev/Lithium/Networking.nix @@ -1,5 +1,5 @@ {...}: let - ports = import ../Cloud/Ports.nix; + ports = import ../../Cloud/Ports.nix; in { networking = { nameservers = ["1.1.1.1"]; |