about summary refs log tree commit diff
path: root/hosts
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
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')
-rw-r--r--hosts/luna/hardware.nix6
-rw-r--r--hosts/phobos/hardware.nix6
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 = [ ];