{ fediversityVm = { ipv4.address = "185.206.232.179"; ipv6.address = "2a00:51c0:12:1201::179"; }; nixos.module = { lib, ... }: { ## 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/119863f8-55cf-4e2f-ac17-27599a63f241"; fsType = "ext4"; }; "/boot" = { device = "/dev/disk/by-uuid/D9F4-9BF0"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; }; }; }