hazel/filesystem: fix empty option

This commit is contained in:
LavaDesu 2025-04-05 13:22:12 +11:00
parent 9212de3ab2
commit 7d50fa4b75
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -3,7 +3,7 @@ let
mkLabelMount = label: type: options: {
device = "/dev/disk/by-label/${label}";
fsType = type;
options = options;
options = [ "defaults" ] ++ options;
};
mkBtrfsMount = name: ext: subvol: atime: mkLabelMount name "btrfs"
([