diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-06-11 13:57:24 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-06-13 15:01:40 +0530 |
| commit | e6b171f9f1d975ffe34e7a34743b5e92e8593847 (patch) | |
| tree | 32714bba7679b5ece2ebcf9aeb795caeab13468e /flake.nix | |
| parent | 2a73a5899124fa15c3962b9bd385ebd415a0ccf9 (diff) | |
| download | homeserver-nixos-config-e6b171f9f1d975ffe34e7a34743b5e92e8593847.tar.gz homeserver-nixos-config-e6b171f9f1d975ffe34e7a34743b5e92e8593847.zip | |
Add service router + nsd server
Diffstat (limited to '')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |
