hazel/filesystem: fix empty option
This commit is contained in:
parent
9212de3ab2
commit
7d50fa4b75
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ let
|
||||||
mkLabelMount = label: type: options: {
|
mkLabelMount = label: type: options: {
|
||||||
device = "/dev/disk/by-label/${label}";
|
device = "/dev/disk/by-label/${label}";
|
||||||
fsType = type;
|
fsType = type;
|
||||||
options = options;
|
options = [ "defaults" ] ++ options;
|
||||||
};
|
};
|
||||||
mkBtrfsMount = name: ext: subvol: atime: mkLabelMount name "btrfs"
|
mkBtrfsMount = name: ext: subvol: atime: mkLabelMount name "btrfs"
|
||||||
([
|
([
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue