mirror of https://gitlab.crans.org/nounous/nixos
27 lines
370 B
Nix
27 lines
370 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "two";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = "35";
|
|
srvNat = {
|
|
enable = true;
|
|
interface = "ens19";
|
|
};
|
|
};
|
|
|
|
resticClient.when = "07:29";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|