Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
24 lines
454 B
Nix
24 lines
454 B
Nix
# This config will be applied to all hosts
|
|
{
|
|
inputs,
|
|
outputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.lix-module.nixosModules.default
|
|
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";
|
|
}
|