nix-config/hosts/common/global/default.nix
Lander Van den Bulcke 2ce21e551c
feat: don't use lix
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2024-11-21 09:56:00 +01:00

22 lines
409 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";
}