summaryrefslogtreecommitdiff
path: root/global/common/modules
diff options
context:
space:
mode:
Diffstat (limited to 'global/common/modules')
-rw-r--r--global/common/modules/disk.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/global/common/modules/disk.nix b/global/common/modules/disk.nix
new file mode 100644
index 0000000..fa26895
--- /dev/null
+++ b/global/common/modules/disk.nix
@@ -0,0 +1,10 @@
+{ lib, ... }:
+{
+ options.global.disk = {
+ master = lib.mkOption {
+ type = lib.types.str;
+ default = "nvme0n1";
+ description = "Used by disko to make /boot and /root";
+ };
+ };
+}