28 lines
581 B
Nix
28 lines
581 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ../../disko/zfs-impermanence.nix ];
|
|
|
|
custom = {
|
|
platform = {
|
|
impermanence.enable = true;
|
|
vm.enable = true;
|
|
};
|
|
services = {
|
|
nextcloud = {
|
|
enable = true;
|
|
domain = "idacloud.sinerva.eu";
|
|
collabora = {
|
|
enable = true;
|
|
domain = "idacollab.sinerva.eu";
|
|
};
|
|
};
|
|
nixCacheClient = {
|
|
enable = true;
|
|
disableLocalBuilds = true;
|
|
};
|
|
};
|
|
networking.idacloudWg.enable = true;
|
|
};
|
|
networking.hostId = "43ce8e3f";
|
|
system.stateVersion = "25.05";
|
|
}
|