diff options
| author | Baitinq <[email protected]> | 2022-06-27 01:37:43 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-06-27 16:31:14 +0200 |
| commit | defd128f86a9a719544f4407b2236c0411a43958 (patch) | |
| tree | 3289e108edd402c65f1c77bcac82e6d7b08597dc /hosts/phobos | |
| parent | Luna: Add custom keymap config (diff) | |
| download | nixos-config-defd128f86a9a719544f4407b2236c0411a43958.tar.gz nixos-config-defd128f86a9a719544f4407b2236c0411a43958.tar.bz2 nixos-config-defd128f86a9a719544f4407b2236c0411a43958.zip | |
Fix bug with mountpoint options not being in diff strings
Diffstat (limited to 'hosts/phobos')
| -rw-r--r-- | hosts/phobos/hardware.nix | 6 |
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 = [ ]; |