From 810bd0e3da0bc7740d8ecf329006b9da6e677d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Wed, 13 Mar 2024 11:08:25 +0100 Subject: [PATCH] rin: Remove btrfs mount options that don't work as expected - noxattr does not exist on btrfs - noacl applies to all subvolumes --- nixos-config/hosts/rin/disko.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos-config/hosts/rin/disko.nix b/nixos-config/hosts/rin/disko.nix index 8ac8daed..a73d4269 100644 --- a/nixos-config/hosts/rin/disko.nix +++ b/nixos-config/hosts/rin/disko.nix @@ -47,7 +47,7 @@ }; "/nix" = { mountpoint = "/nix"; - mountOptions = ["compress=zstd" "noatime" "noxattr" "noacl"]; + mountOptions = ["compress=zstd" "noatime"]; }; }; };