Fediversity/infra/vm02186/default.nix

23 lines
435 B
Nix
Raw Normal View History

{
procolixVm = {
ipv4.address = "185.206.232.186";
ipv6.address = "2a00:51c0:12:1201::186";
};
2024-11-20 17:22:55 +01:00
2025-01-31 15:11:56 +01:00
nixos.module = {
fileSystems."/" = {
device = "/dev/disk/by-uuid/833ac0f9-ad8c-45ae-a9bf-5844e378c44a";
fsType = "ext4";
};
2025-01-31 15:11:56 +01:00
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/B4D5-3AF9";
fsType = "vfat";
options = [
"fmask=0022"
"dmask=0022"
];
};
};
}