nixosModules: remove unnecessary ./iso and disk-layout, clanModules: fix issue #1349

This commit is contained in:
Qubasa
2024-09-03 00:09:45 +02:00
parent 57513bef93
commit e35fd0976a
8 changed files with 14 additions and 152 deletions

View File

@@ -22,12 +22,12 @@
content = {
type = "gpt";
partitions = {
boot = {
"${config.networking.hostName}-boot" = {
size = "1M";
type = "EF02"; # for grub MBR
priority = 1;
};
ESP = {
"${config.networking.hostName}-ESP" = {
size = "512M";
type = "EF00";
content = {
@@ -36,7 +36,7 @@
mountpoint = "/boot";
};
};
root = {
"${config.networking.hostName}-root" = {
size = "100%";
content = {
type = "filesystem";