2024-11-18 10:48:16 +01:00
|
|
|
{
|
2025-01-31 17:15:12 +01:00
|
|
|
procolixVm = {
|
|
|
|
ipv4.address = "185.206.232.187";
|
|
|
|
ipv6.address = "2a00:51c0:12:1201::187";
|
|
|
|
};
|
2024-11-20 17:25:17 +01:00
|
|
|
|
2025-01-31 15:11:56 +01:00
|
|
|
nixos.module = {
|
|
|
|
imports = [
|
|
|
|
./wiki.nix
|
|
|
|
];
|
2024-11-20 17:25:17 +01:00
|
|
|
|
2025-01-31 15:11:56 +01:00
|
|
|
fileSystems."/" = {
|
|
|
|
device = "/dev/disk/by-uuid/a46a9c46-e32b-4216-a4aa-8819b2cd0d49";
|
|
|
|
fsType = "ext4";
|
|
|
|
};
|
|
|
|
|
|
|
|
fileSystems."/boot" = {
|
|
|
|
device = "/dev/disk/by-uuid/6AB5-4FA8";
|
|
|
|
fsType = "vfat";
|
|
|
|
options = [
|
|
|
|
"fmask=0022"
|
|
|
|
"dmask=0022"
|
|
|
|
];
|
|
|
|
};
|
2024-11-18 11:30:00 +01:00
|
|
|
};
|
2024-11-18 10:48:16 +01:00
|
|
|
}
|