diff --git a/hosts/common/global/default.nix b/hosts/common/global/default.nix index 81d85f7..cf11098 100644 --- a/hosts/common/global/default.nix +++ b/hosts/common/global/default.nix @@ -1,9 +1,11 @@ # This config will be applied to all hosts { inputs, + lib, outputs, ... -}: { +}: +{ imports = [ inputs.home-manager.nixosModules.home-manager inputs.catppuccin.nixosModules.catppuccin @@ -16,10 +18,13 @@ ]; home-manager.useGlobalPkgs = true; - home-manager.extraSpecialArgs = {inherit inputs outputs;}; + home-manager.extraSpecialArgs = { inherit inputs outputs; }; - networking.nameservers = [ + networking.nameservers = lib.mkForce [ "9.9.9.9" + "149.112.112.112" + "2620:fe::fe" + "2620:fe::9" ]; virtualisation.docker.enable = true;