diff options
Diffstat (limited to 'node/backup.jras.nl/disk-config.nix')
-rw-r--r-- | node/backup.jras.nl/disk-config.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/node/backup.jras.nl/disk-config.nix b/node/backup.jras.nl/disk-config.nix index 8800806..c02a3b3 100644 --- a/node/backup.jras.nl/disk-config.nix +++ b/node/backup.jras.nl/disk-config.nix @@ -7,14 +7,19 @@ content = { type = "gpt"; partitions = { - ESP = { + boot = { + name = "boot"; + size = "1M"; + type = "EF02"; + }; + esp = { + name = "ESP"; + size = "500M"; type = "EF00"; - size = "1G"; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; - mountOptions = [ "umask=0077" ]; }; }; zfs = { |