bos55-nix-config-cicd/modules/common/default.nix
Tibo De Peuter ffe7572c7d
Some checks failed
Build / build (Development) (push) Has been skipped
Build / Determining hosts to build (push) Failing after 1s
Build / build (Testing) (push) Has been skipped
feat: implement Attic binary cache with remote build support and sops-nix integration
2026-03-17 18:31:43 +01:00

26 lines
474 B
Nix

{
imports = [
./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";
};
};
}