Files
nix-config/modules/nixos/disko/options.nix
mjallen18 7e82df3df7 idk
2025-08-21 21:04:11 -05:00

13 lines
302 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";
};
};
}