From 2eb6f9a42511fba815c8dd6ffcc31235e88ade48 Mon Sep 17 00:00:00 2001 From: Victor Date: Sat, 10 Sep 2022 15:14:57 +0200 Subject: [PATCH] undo unify unbound --- nixos/hosts/olympus/dns/configuration.nix | 2 +- nixos/pkgs/default.nix | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nixos/hosts/olympus/dns/configuration.nix b/nixos/hosts/olympus/dns/configuration.nix index b1098d5..c794d89 100644 --- a/nixos/hosts/olympus/dns/configuration.nix +++ b/nixos/hosts/olympus/dns/configuration.nix @@ -28,7 +28,7 @@ in { services.unbound = { enable = true; - package = pkgs.unbound; + package = pkgs.v.unbound; settings = { server = { use-syslog = "yes"; diff --git a/nixos/pkgs/default.nix b/nixos/pkgs/default.nix index 51ef0ef..c97f4be 100644 --- a/nixos/pkgs/default.nix +++ b/nixos/pkgs/default.nix @@ -10,17 +10,17 @@ final: prev: { catppuccin.cursors = prev.callPackage ./catppuccin/cursors { }; - unbound = prev.unbound.override { - withSystemd = true; - withDoH = true; - withDNSCrypt = true; - withTFO = true; - }; + v = { glitch-soc = prev.callPackage ./glitch-soc { }; - + unbound = prev.unbound.override { + withSystemd = true; + withDoH = true; + withDNSCrypt = true; + withTFO = true; + }; vmagent = prev.callPackage ./vmagent { }; gitea-agatheme = prev.callPackage ./gitea-agatheme { }; };