16 lines
324 B
Nix
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";
|
|
};
|
|
};
|
|
}
|