mirror of https://gitlab.crans.org/nounous/nixos
25 lines
340 B
Nix
25 lines
340 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./redlib.nix
|
|
];
|
|
|
|
networking.hostName = "redite";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = "39";
|
|
srvNat.enable = true;
|
|
};
|
|
|
|
resticClient.when = "06:18";
|
|
};
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|