Files
nix-config/modules/nixos/disko/options.nix
2025-08-21 19:40:32 -05:00

16 lines
324 B
Nix

{ lib, namespace, ... }:
with lib;
{
options.${namespace}.hardware.disko = {
enable = mkEnableOption "enable disko";
filesystem = mkOption {
type = types.enum [
"bcachefs"
"btrfs"
];
default = "btrfs";
description = "Filesystem to use for the root partition";
};
};
}