diff options
author | azahi <azat@bahawi.net> | 2025-02-17 02:21:56 +0300 |
---|---|---|
committer | azahi <azat@bahawi.net> | 2025-02-17 02:21:56 +0300 |
commit | 59180328cda59817d71cd58c8f48ead047375064 (patch) | |
tree | 2cdd7d1bfa309839ef624c19daf283f510aacf69 /configurations/tulkas | |
parent | 2025-02-05 (diff) |
2025-02-17
Diffstat (limited to '')
-rw-r--r-- | configurations/tulkas/default.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/configurations/tulkas/default.nix b/configurations/tulkas/default.nix index 5946ea8..0ca1279 100644 --- a/configurations/tulkas/default.nix +++ b/configurations/tulkas/default.nix @@ -1,14 +1,13 @@ { lib, this, ... }: -with lib; { - imports = attrValues (modulesIn ./.); + imports = lib.modulesIn ./. |> lib.attrValues; nixfiles.modules = { wireguard.client.enable = true; - wireguard-ng.server.enable = true; + # wireguard-ng.server.enable = true; - unbound-ng.enable = true; - unbound-ng.domain = "shire.local"; + # unbound-ng.enable = true; + # unbound-ng.domain = "shire.local"; }; services.qemuGuest.enable = true; |