forked from Bos55/nix-config
26 lines
474 B
Nix
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";
|
|
};
|
|
};
|
|
}
|