about summary refs log tree commit diff
path: root/hosts
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-25 00:38:05 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-08-25 00:38:05 +0200
commitdc4d9bf6f1c3de0995128e505ed07cd7ea24d870 (patch)
tree7601e072b0091213195ff98d214444e37178e174 /hosts
parentUpdate disko (diff)
downloadnixos-config-dc4d9bf6f1c3de0995128e505ed07cd7ea24d870.tar.gz
nixos-config-dc4d9bf6f1c3de0995128e505ed07cd7ea24d870.tar.bz2
nixos-config-dc4d9bf6f1c3de0995128e505ed07cd7ea24d870.zip
Disko: Add esp flag to efi partition and rename label to part-label
Diffstat (limited to 'hosts')
-rw-r--r--hosts/luna/disks.nix13
1 files changed, 5 insertions, 8 deletions
diff --git a/hosts/luna/disks.nix b/hosts/luna/disks.nix
index d9a5846..e8341da 100644
--- a/hosts/luna/disks.nix
+++ b/hosts/luna/disks.nix
@@ -9,8 +9,8 @@ let
         partitions = [
           {
             type = "partition";
-            part-type = "ESP";
-            label = "efi";
+            part-label = "efi";
+            flags = [ "esp" ];
             start = "0";
             end = "64M";
             fs-type = "fat32";
@@ -24,8 +24,7 @@ let
             type = "partition";
             start = "64M";
             end = "264M";
-            part-type = "primary";
-            label = "boot";
+            part-label = "boot";
             content = {
               type = "luks";
               name = "encrypted_boot";
@@ -41,8 +40,7 @@ let
             type = "partition";
             start = "264M";
             end = "100%";
-            part-type = "primary";
-            label = "nix";
+            part-label = "nix";
             content = {
               type = "luks";
               name = "encrypted_nix";
@@ -62,8 +60,7 @@ let
         partitions = [
           {
             type = "partition";
-            part-type = "primary";
-            label = "home_and_persist";
+            part-label = "home_and_persist";
             start = "0";
             end = "100%";
             content = {