From d3f9928a141dc777e616df1ba9fbc687dba824a5 Mon Sep 17 00:00:00 2001 From: iFargle Date: Fri, 22 Sep 2023 11:32:06 +0900 Subject: [PATCH] test --- nixos/hosts/nixos-vm-02/disks.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/nixos-vm-02/disks.nix b/nixos/hosts/nixos-vm-02/disks.nix index 680c423a..7a77bf4b 100644 --- a/nixos/hosts/nixos-vm-02/disks.nix +++ b/nixos/hosts/nixos-vm-02/disks.nix @@ -6,7 +6,8 @@ content = { type = "table"; format = "gpt"; - partitions = [ { + partitions = [ + BOOT = { name = "BOOT"; label = "BOOT"; start = "0%"; @@ -19,7 +20,8 @@ format = "vfat"; mountpoint = "/boot"; }; - } { # partition 1 + } # partition 1 + ROOT = { name = "ROOT"; label = "ROOT"; size = "100%";