From f867cdb7cc8aa7dd276d6b999089c563b289b338 Mon Sep 17 00:00:00 2001 From: Vivian Roest 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 b1098d54..c794d89b 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 51ef0eff..c97f4beb 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 { }; };