mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
feat: make gpt but properly now
This commit is contained in:
parent
9b3ab6acf3
commit
c0cab9eb1d
1 changed files with 5 additions and 10 deletions
|
|
@ -9,17 +9,12 @@
|
||||||
device = "/dev/sda";
|
device = "/dev/sda";
|
||||||
type = "disk";
|
type = "disk";
|
||||||
content = {
|
content = {
|
||||||
type = "mbr";
|
type = "gpt";
|
||||||
partitions = {
|
partitions = {
|
||||||
ESP = {
|
boot = {
|
||||||
type = "EF00";
|
size = "1M";
|
||||||
size = "500M";
|
type = "EF02";
|
||||||
content = {
|
priority = 1;
|
||||||
type = "filesystem";
|
|
||||||
format = "vfat";
|
|
||||||
mountpoint = "/boot";
|
|
||||||
mountOptions = [ "umask=0077" ];
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
root = {
|
root = {
|
||||||
size = "100%";
|
size = "100%";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue