Files
dotfiles/nixos/tsuba/services/resolved.nix
uttarayan21 e8aece3f47 feat(nixos): update flake.lock and configure services for ryu and tako
feat(home): adjust vicinae and eilmeldung configurations

feat(neovim): enable folding in neovim configuration

fix(nixos): disable resolved dns and remove fallback dns on tako

chore(nixos): add pihole and resolved services to tsuba

chore(home): remove unused packages from programs

chore(nixos): add gamescope-wsi and vulkan-tools to steam configuration

chore(nixos): update navidrome service with sops integration and systemd tmpfiles

chore(darwin): use dynamic user in shiro configuration

chore(secrets): add lastfm and pihole secrets to secrets.yaml
2025-12-30 04:32:13 +05:30

12 lines
289 B
Nix

{lib, ...}: {
services.resolved = {
enable = false;
# dnssec = "true";
# domains = ["~." "lemur-newton.ts.net"];
# fallbackDns = ["1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one"];
fallbackDns = [];
# dnsovertls = "true";
};
networking.nameservers = [];
}