bos55-nix-config-cicd/modules/common/default.nix
Tibo De Peuter ab23bc746f
Some checks failed
Check / check (push) Failing after 1s
refactor: optimize flake.nix and modularize networking config
Cleaner deploy.nodes generation and improved devShell experience.
2026-03-17 18:21:22 +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";
};
}