dotfiles/nix/hardware/recovery-usb.nix

13 lines
249 B
Nix
Raw Normal View History

{ pkgs, config, lib, ... }:
with lib;
let
cfg = config.magic_rb.hardware.recoveryUsb;
in
{
options.magic_rb.hardware.recoveryUsb = mkEnableOption "Enable recovery USB.";
config = mkIf cfg {
# boot.supportedFilesystems = [ "zfs" ];
};
}