flakes/containers/beryllium/configuration.nix

16 lines
283 B
Nix
Raw Normal View History

2026-03-15 19:27:29 +11:00
{ ... }: {
system.stateVersion = "25.11";
fileSystems."/var/lib/private" = {
device = "/persist";
fsType = "none";
options = [ "bind" ];
};
services.matrix-continuwuity = {
enable = true;
settings.global = {
server_name = "lava.moe";
};
};
}