hazel/filesystem: fix syntax
This commit is contained in:
parent
548c2f868f
commit
f535775b77
1 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ let
|
||||||
options = options;
|
options = options;
|
||||||
};
|
};
|
||||||
mkBtrfsMount = name: ext: subvol: atime: mkLabelMount name "btrfs"
|
mkBtrfsMount = name: ext: subvol: atime: mkLabelMount name "btrfs"
|
||||||
[
|
([
|
||||||
"autodefrag"
|
"autodefrag"
|
||||||
"compress=zstd:4"
|
"compress=zstd:4"
|
||||||
"compress-force=zstd:4"
|
"compress-force=zstd:4"
|
||||||
|
|
@ -15,7 +15,7 @@ let
|
||||||
"space_cache=v2"
|
"space_cache=v2"
|
||||||
"subvol=${subvol}"
|
"subvol=${subvol}"
|
||||||
(if atime then "relatime" else "noatime")
|
(if atime then "relatime" else "noatime")
|
||||||
] ++ ext;
|
] ++ ext);
|
||||||
|
|
||||||
mkHazelMount = mkBtrfsMount "HAZEL" [ "noauto" ];
|
mkHazelMount = mkBtrfsMount "HAZEL" [ "noauto" ];
|
||||||
in
|
in
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue