mirror of https://gitlab.crans.org/nounous/nixos
32 lines
439 B
Nix
32 lines
439 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./jitsi.nix
|
|
];
|
|
|
|
networking.hostName = "jitsi";
|
|
boot.loader.grub.devices = [ "/dev/vda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = "63";
|
|
srv = {
|
|
enable = true;
|
|
ipv4 = "185.230.79.15";
|
|
};
|
|
};
|
|
|
|
resticClient.when = "02:34";
|
|
|
|
services = {
|
|
acme.enable = true;
|
|
};
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|