17 lines
243 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.ataraxia.filesystems.btrfs;
in
{
options.ataraxia.filesystems.btrfs = {
enable = mkEnableOption "Root on btrfs";
};
config = mkIf cfg.enable { };
}