mirror of https://gitlab.crans.org/nounous/nixos
28 lines
382 B
Nix
28 lines
382 B
Nix
|
|
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "victoriametrics";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = 153;
|
|
srvNat = {
|
|
enable = true;
|
|
interface = "ens19";
|
|
};
|
|
};
|
|
|
|
resticClient.when = "06:29";
|
|
};
|
|
|
|
system.stateVersion = "26.05";
|
|
}
|