From e6b171f9f1d975ffe34e7a34743b5e92e8593847 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Wed, 11 Jun 2025 13:57:24 +0530 Subject: Add service router + nsd server --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index d7154c2..b5163e9 100644 --- a/flake.nix +++ b/flake.nix @@ -2,11 +2,16 @@ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixos-hardware.url = "github:NixOS/nixos-hardware"; + dns = { + url = "github:kirelagin/dns.nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; - outputs = { self, nixpkgs, nixos-hardware, ... }: { + outputs = { self, nixpkgs, nixos-hardware, dns, ... }: { nixosConfigurations.bacchus = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = { inherit dns; }; modules = [ "${nixos-hardware}/lenovo/ideapad" ./configuration.nix -- cgit v1.3.1