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