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

23 lines
441 B
Nix

{ ... }:
{
imports = [ ../../disko/zfs-impermanence.nix ];
custom = {
platform = {
impermanence.enable = true;
vm.enable = true;
};
services = {
nextcloud = {
enable = true;
domain = "nextcloud.vsinerva.fi";
};
nixCacheClient = {
enable = true;
disableLocalBuilds = true;
};
};
};
networking.hostId = "ba0aeb92";
system.stateVersion = "25.05";
}