1
0
forked from clan/clan-core
clan-core/clanModules/single-disk
2024-07-03 11:57:15 +02:00
..
roles clanModules: init single disk 2024-07-03 11:05:00 +02:00
default.nix clanModules: init single disk 2024-07-03 11:05:00 +02:00
README.md Fix frontmatter of module 2024-07-03 11:57:15 +02:00

description = "Configures partitioning of the main disk" categories = ["disk-layout"]
description = "Configures partitioning of the main disk" categories = ["disk-layout"]

Primary Disk Layout

A module for the "disk-layout" category MUST be choosen.

There is exactly one slot for this type of module in the UI, if you don't fill the slot, your machine cannot boot

This module is a good choice for most machines. In the future clan will offer a broader choice of disk-layouts

The UI will ask for the options of this module:

device: "/dev/null"

Usage example

inventory.json

"services": {
    "single-disk": {
        "default": {
            "meta": {
                "name": "single-disk"
            },
            "roles": {
                "default": {
                    "machines": ["jon"]
                }
            },
            "machines": {
                "jon": {
                    "config": {
                        "device": "/dev/null"
                    }
                }
            }
        }
    }
}