Skip to content

Commit 1c93154

Browse files
style: format btrfs.nix
1 parent 29b9e5c commit 1c93154

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/types/btrfs.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ in {
193193
(subvol.mountpoint != null)
194194
(
195195
let
196-
mergedOptions = lib.unique (config.mountOptions ++ subvol.mountOptions ++ [ "subvol=${subvol.name}" ]);
196+
mergedOptions = lib.unique (config.mountOptions ++ subvol.mountOptions ++ ["subvol=${subvol.name}"]);
197197
in {
198198
${subvol.mountpoint} = ''
199199
if ! findmnt "${config.device}" "${rootMountPoint}${subvol.mountpoint}" > /dev/null 2>&1; then
@@ -265,7 +265,7 @@ in {
265265
subvol:
266266
lib.optionalAttrs (subvol.mountpoint != null) (
267267
let
268-
mergedOptions = lib.unique (config.mountOptions ++ subvol.mountOptions ++ [ "subvol=${subvol.name}" ]);
268+
mergedOptions = lib.unique (config.mountOptions ++ subvol.mountOptions ++ ["subvol=${subvol.name}"]);
269269
in {
270270
fileSystems.${subvol.mountpoint} = {
271271
device = config.device;

0 commit comments

Comments
 (0)