bos55-nix-config-cicd/modules/common/default.nix
Tibo De Peuter 8fb651fd60
refactor: optimize flake.nix and modularize networking config
Cleaner deploy.nodes generation, improved devShell experience, and centralized host IP definitions.
2026-03-17 18:24:17 +01:00

21 lines
327 B
Nix

{
imports = [
./networking.nix
./secrets.nix
];
config = {
homelab = {
services.openssh.enable = true;
users.admin.enable = true;
};
nix.settings.experimental-features = [
"flakes"
"nix-command"
];
# Set your time zone.
time.timeZone = "Europe/Brussels";
};
}