16 lines
268 B
Nix
16 lines
268 B
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";
|
|
};
|
|
}
|