diff options
-rw-r--r-- | hosts/luna/hardware.nix | 6 | ||||
-rw-r--r-- | hosts/phobos/hardware.nix | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/hosts/luna/hardware.nix b/hosts/luna/hardware.nix index 45da552..4d068d0 100644 --- a/hosts/luna/hardware.nix +++ b/hosts/luna/hardware.nix @@ -23,19 +23,19 @@ in fileSystems."/" = { device = "/dev/disk/by-uuid/af0f88f6-d4db-471e-b5b7-2c0a1c314c23"; fsType = "btrfs"; - options = [ "subvol=root compress-force=zstd noatime" ]; + options = [ "subvol=root" "compress-force=zstd" "noatime" ]; }; fileSystems."/nix" = { device = "/dev/disk/by-uuid/af0f88f6-d4db-471e-b5b7-2c0a1c314c23"; fsType = "btrfs"; - options = [ "subvol=nix compress-force=zstd noatime" ]; + options = [ "subvol=nix" "compress-force=zstd" "noatime" ]; }; fileSystems."/home" = { device = "/dev/disk/by-uuid/d7d4ebea-7c4b-4b1b-afdf-8b39f686276e"; fsType = "btrfs"; - options = [ "subvol=home compress-force=zstd" ]; + options = [ "subvol=home" "compress-force=zstd" ]; }; swapDevices = [ ]; diff --git a/hosts/phobos/hardware.nix b/hosts/phobos/hardware.nix index f05ed0d..05a6d43 100644 --- a/hosts/phobos/hardware.nix +++ b/hosts/phobos/hardware.nix @@ -23,19 +23,19 @@ in fileSystems."/" = { device = "/dev/disk/by-uuid/9a450653-8369-4850-af4f-cbec7cac8a99"; fsType = "btrfs"; - options = [ "subvol=root compress-force=zstd noatime" ]; + options = [ "subvol=root" "compress-force=zstd" "noatime" ]; }; fileSystems."/home" = { device = "/dev/disk/by-uuid/9a450653-8369-4850-af4f-cbec7cac8a99"; fsType = "btrfs"; - options = [ "subvol=home compress-force=zstd" ]; + options = [ "subvol=home" "compress-force=zstd" ]; }; fileSystems."/nix" = { device = "/dev/disk/by-uuid/9a450653-8369-4850-af4f-cbec7cac8a99"; fsType = "btrfs"; - options = [ "subvol=nix compress-force=zstd noatime" ]; + options = [ "subvol=nix" "compress-force=zstd" "noatime" ]; }; swapDevices = [ ]; |