forked from Fediversity/Fediversity
28 lines
663 B
Nix
28 lines
663 B
Nix
{
|
|
fediversityVm = {
|
|
ipv4.address = "185.206.232.186";
|
|
ipv6.address = "2a00:51c0:12:1201::186";
|
|
};
|
|
|
|
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/833ac0f9-ad8c-45ae-a9bf-5844e378c44a";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
"/boot" = {
|
|
device = "/dev/disk/by-uuid/B4D5-3AF9";
|
|
fsType = "vfat";
|
|
options = [
|
|
"fmask=0022"
|
|
"dmask=0022"
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|