Files
dotfiles/nixos/tsuba/services/resolved.nix
servius a444694054
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
fix: Don't remove resolved.enable = false else it'll fuck up ssh into tsuba
This is a dns issue where if we dont explicitly disable it then it
conflicts with the 53 port from the pihole container and we can't ssh
into the device anymore
2026-02-01 02:53:38 +05:30

7 lines
91 B
Nix

{...}: {
services.resolved = {
enable = false;
};
networking.nameservers = [];
}