From 60b68785a90afe647acc72e94f58065bc0c67f74 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sat, 25 Feb 2023 10:35:56 -0500 Subject: [PATCH] fix: types --- hosts/swan/disks.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/swan/disks.nix b/hosts/swan/disks.nix index 95e2667..eee1302 100644 --- a/hosts/swan/disks.nix +++ b/hosts/swan/disks.nix @@ -19,7 +19,7 @@ type = "filesystem"; format = "vfat"; mountpoint = "/boot"; - extraArgs = "--label boot"; + extraArgs = [ "--label boot" ]; }; } { @@ -33,7 +33,7 @@ type = "filesystem"; format = "ext4"; mountpoint = "/"; - extraArgs = "--label nixos"; + extraArgs = [ "--label nixos" ]; }; } ];