nix-config/hosts/common/global/default.nix
Lander Van den Bulcke 5f59d5f972
fix: resolvconf
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-01-28 22:11:37 +01:00

28 lines
480 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 = [
"1.1.1.1"
"1.0.0.1"
];
virtualisation.docker.enable = true;
}