mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
13 lines
247 B
Nix
13 lines
247 B
Nix
|
{ 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" ];
|
||
|
};
|
||
|
}
|