update configuration
Check NixOS configurations / eval-hosts (push) Failing after 14m28s

This commit is contained in:
2026-07-17 09:18:24 +10:00
parent 9d42450c65
commit 8259e57191
+15 -15
View File
@@ -10,9 +10,22 @@
type = "gpt";
partitions = {
root = {
swap = {
priority = 1;
size = "-8G";
size = "8G";
content = {
type = "swap";
extraArgs = [
"-L"
"swap"
];
};
};
root = {
priority = 2;
size = "100%";
content = {
type = "filesystem";
@@ -24,19 +37,6 @@
];
};
};
swap = {
priority = 2;
size = "100%";
content = {
type = "swap";
extraArgs = [
"-L"
"swap"
];
};
};
};
};
};