8 lines
211 B
Nix
8 lines
211 B
Nix
|
{ device, fsType, encrypted, ... }:
|
||
|
let
|
||
|
ext4 = import ./gpt-bios-compact.nix { inherit device; };
|
||
|
|
||
|
btrfs = import ./luks-btrfs-subvolumes.nix { inherit device; };
|
||
|
in
|
||
|
if fsType == "ext4" then ext4 else btrfs
|