momo: NixOS 23.11, fix build (treefmt), move to flake-parts #262

Merged
teutat3s merged 12 commits from momo/nixos-23.11 into momo/main 2024-01-08 22:50:39 +00:00
Showing only changes of commit 6bd7640e5a - Show all commits

View file

@ -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;
}
]; ];
}; };
}; };