From df41ae0b843c454dc15a110b30639182d4541964 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 31 Mar 2023 12:09:47 -0400 Subject: [PATCH] refactor(networking): make private networking section --- flake.lock | 8 ++++---- flake.nix | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index 9a03094..2e26153 100644 --- a/flake.lock +++ b/flake.lock @@ -703,11 +703,11 @@ }, "private": { "locked": { - "lastModified": 1680278490, - "narHash": "sha256-CiP5oShOX+BXh8r+7mEMJg2OzszZ3XOwdqlu3zhU6Uk=", + "lastModified": 1680278963, + "narHash": "sha256-xQV3xCyGSH+wgi06AE8ZK8U9C6iLqp9IVjfcPAUUmjM=", "ref": "refs/heads/master", - "rev": "5dc38740b5b82d2b55e5dac54b666faf5e4fcfd8", - "revCount": 2, + "rev": "b7703cc30aa84ef12cf41f251057c7fc38eabcf1", + "revCount": 3, "type": "git", "url": "ssh://git@github.com/Infinidoge/universe-private" }, diff --git a/flake.nix b/flake.nix index 185a178..89bdc39 100644 --- a/flake.nix +++ b/flake.nix @@ -61,7 +61,7 @@ , nixos , home , agenix - # , deploy + , private , ... }@inputs: digga.lib.mkFlake @@ -117,6 +117,8 @@ bud.nixosModules.bud ./secrets + private.nixosModules.networking + # --- Library Modules --- inputs.nixos-wsl.nixosModules.wsl inputs.impermanence.nixosModules.impermanence @@ -151,7 +153,7 @@ ]; }; - inherit (inputs) private; + inherit private; }; };