nix-config/hosts/common/global/default.nix
Lander Van den Bulcke a3f040af87
feat: switch to quad9
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-08-05 20:37:13 +02:00

27 lines
466 B
Nix

# This config will be applied to all hosts
{
inputs,
outputs,
...
}:
{
imports = [
inputs.home-manager.nixosModules.home-manager
inputs.catppuccin.nixosModules.catppuccin
./locale.nix
./nh.nix
./openssh.nix
./secrets.nix
./sops.nix
];
home-manager.useGlobalPkgs = true;
home-manager.extraSpecialArgs = { inherit inputs outputs; };
networking.nameservers = [
"9.9.9.9"
];
virtualisation.docker.enable = true;
}