{ fediversityVm = { vmId = 2187; proxmox = "procolix"; description = "Wiki"; ipv4.address = "185.206.232.187"; ipv6.address = "2a00:51c0:12:1201::187"; }; nixos.module = { lib, ... }: { imports = [ ./wiki.nix ]; ## NOTE: This VM was created manually, which requires us to override the ## default disko-based `fileSystems` definition. fileSystems = lib.mkForce { "/" = { device = "/dev/disk/by-uuid/a46a9c46-e32b-4216-a4aa-8819b2cd0d49"; fsType = "ext4"; }; "/boot" = { device = "/dev/disk/by-uuid/6AB5-4FA8"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; }; }; }