Skip to content

Commit

Permalink
hosts: make more disko fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lilyinstarlight committed Feb 20, 2024
1 parent 38addca commit 3728131
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions hosts/bina/disks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
type = "gpt";
partitions = {
esp = {
label = "esp";
type = "EF00";
start = "1MiB";
end = "512MiB";
Expand All @@ -19,6 +20,7 @@
};
};
nixos = {
label = "nixos";
start = "512MiB";
end = "100%";
content = {
Expand Down
2 changes: 2 additions & 0 deletions hosts/lia/disks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
type = "gpt";
partitions = {
esp = {
label = "esp";
type = "EF00";
start = "1MiB";
end = "512MiB";
Expand All @@ -19,6 +20,7 @@
};
};
nixos = {
label = "nixos";
start = "512MiB";
end = "100%";
content = {
Expand Down
3 changes: 3 additions & 0 deletions hosts/minimal/disks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
type = "gpt";
partitions = {
esp = {
label = "esp";
type = "EF00";
start = "1MiB";
end = "100MiB";
Expand All @@ -19,6 +20,7 @@
};
};
root = {
label = "root";
start = "100MiB";
end = "-2GiB";
content = {
Expand All @@ -28,6 +30,7 @@
};
};
swap = {
label = "swap";
start = "-2GiB";
end = "100%";
content = {
Expand Down

0 comments on commit 3728131

Please sign in to comment.