PortValhalla/lib/modules/programs/btrfs.nix

15 lines
255 B
Nix
Raw Normal View History

2024-12-07 20:14:36 +00:00
{ lib, ... }:
let
inherit (lib) mkEnableOption;
in
{
options = {
valhalla = {
linux.programs.btrfs = {
enable = mkEnableOption "btrfs tools";
pools = mkEnableOption "btrfs pool support in bootloaders";
};
};
};
}