bos55-nix-config-cicd/modules/common/default.nix
Tibo De Peuter de1ee54b8b
Some checks failed
Build / build (Development) (push) Has been cancelled
Build / Determining hosts to build (push) Failing after 11m22s
Build / build (Testing) (push) Has been cancelled
feat(attic): extract attic to service module, add cache host, configure reverse proxy/DNS
2026-03-17 21:46:44 +01:00

27 lines
492 B
Nix

{
imports = [
./secrets.nix
./substituters.nix
];
config = {
homelab = {
services.openssh.enable = true;
users.admin.enable = true;
common.substituters.enable = true;
};
nix.settings.experimental-features = [
"flakes"
"nix-command"
];
# Set your time zone.
time.timeZone = "Europe/Brussels";
sops = {
defaultSopsFile = ../../secrets/secrets.yaml;
age.keyFile = "/var/lib/sops-nix/key.txt";
};
};
}