nix-config/hosts/common/global/default.nix
Lander Van den Bulcke 6610403d08
feat: enable docker
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2024-12-16 10:43:37 +01:00

24 lines
449 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.domain = "lndr.be";
virtualisation.docker.enable = true;
}