nixos-conf/hosts/x86_64-linux/idacloud.nix

29 lines
585 B
Nix
Raw Normal View History

2025-07-06 12:09:21 +03:00
{ ... }:
2025-04-07 01:16:03 +03:00
{
2025-07-12 03:52:35 +03:00
imports = [ ../../disko/zfs-impermanence.nix ];
2025-04-07 01:16:03 +03:00
custom = {
2025-07-06 03:22:09 +03:00
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;
remoteBuilds.exclusive = true;
};
};
2025-07-06 12:09:21 +03:00
networking.idacloudWg.enable = true;
};
networking.hostId = "43ce8e3f";
system.stateVersion = "25.05";
2025-04-07 01:16:03 +03:00
}