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";
|
||||
type = "disk";
|
||||
content = {
|
||||
type = "mbr";
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
ESP = {
|
||||
type = "EF00";
|
||||
size = "500M";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [ "umask=0077" ];
|
||||
};
|
||||
boot = {
|
||||
size = "1M";
|
||||
type = "EF02";
|
||||
priority = 1;
|
||||
};
|
||||
root = {
|
||||
size = "100%";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue