momo: NixOS 23.11, fix build (treefmt), move to flake-parts #262
|
@ -18,18 +18,18 @@
|
||||||
device = "/dev/disk/by-uuid/bf890962-9f43-4c44-a0df-64cabd303662";
|
device = "/dev/disk/by-uuid/bf890962-9f43-4c44-a0df-64cabd303662";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{ device = "/dev/disk/by-uuid/7eb8989a-6ec4-405f-8810-06486f7621c1";
|
device = "/dev/disk/by-uuid/7eb8989a-6ec4-405f-8810-06486f7621c1";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-uuid/1fd053f8-725b-418d-aed1-aee71dac2b62";
|
device = "/dev/disk/by-uuid/1fd053f8-725b-418d-aed1-aee71dac2b62";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices = [
|
||||||
[ { device = "/dev/disk/by-uuid/2f114633-5b71-46ab-88be-997b27927269"; }
|
{device = "/dev/disk/by-uuid/2f114633-5b71-46ab-88be-997b27927269";}
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
@ -41,7 +41,10 @@
|
||||||
interfaces.enp1s0 = {
|
interfaces.enp1s0 = {
|
||||||
useDHCP = false;
|
useDHCP = false;
|
||||||
ipv4.addresses = [
|
ipv4.addresses = [
|
||||||
{ address = "80.244.242.4"; prefixLength = 29; }
|
{
|
||||||
|
address = "80.244.242.4";
|
||||||
|
prefixLength = 29;
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue