about summary refs log tree commit diff
path: root/hosts/phobos/hardware.nix
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-06-27 01:37:43 +0200
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-06-27 16:31:14 +0200
commit095d6429c03fc6e447d866e158f4861b0fa59100 (patch)
treefac150e1a00f1aa2d0c97ac3b35bd43920cffae6 /hosts/phobos/hardware.nix
parentLuna: Add custom keymap config (diff)
downloadnixos-config-095d6429c03fc6e447d866e158f4861b0fa59100.tar.gz
nixos-config-095d6429c03fc6e447d866e158f4861b0fa59100.tar.bz2
nixos-config-095d6429c03fc6e447d866e158f4861b0fa59100.zip
Fix bug with mountpoint options not being in diff strings
Diffstat (limited to 'hosts/phobos/hardware.nix')
-rw-r--r--hosts/phobos/hardware.nix6
1 files changed, 3 insertions, 3 deletions
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 = [ ];