Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
31 lines
542 B
Nix
31 lines
542 B
Nix
# This config will be applied to all hosts
|
|
{
|
|
inputs,
|
|
lib,
|
|
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 = lib.mkForce [
|
|
"9.9.9.9"
|
|
"149.112.112.112"
|
|
"2620:fe::fe"
|
|
"2620:fe::9"
|
|
];
|
|
|
|
virtualisation.docker.enable = true;
|
|
}
|