summaryrefslogtreecommitdiff
path: root/global/common/modules/disk.nix
blob: fa26895af6aa2ceb7d3e7128d5227cc51a6ba63c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ lib, ... }:
{
  options.global.disk = {
    master = lib.mkOption {
      type = lib.types.str;
      default = "nvme0n1";
      description = "Used by disko to make /boot and /root";
    };
  };
}