mirror of https://gitlab.crans.org/nounous/nixos
27 lines
374 B
Nix
27 lines
374 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "peertube";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = "60";
|
|
srv = {
|
|
enable = true;
|
|
ipv4 = "185.230.79.8";
|
|
};
|
|
};
|
|
|
|
resticClient.when = "05:32";
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|