PortValhalla/lib/modules/partition.nix

19 lines
326 B
Nix

{ lib, ... }:
let
in {
options = {
partition = {
script = lib.mkOption {
type = lib.types.lines;
description = "The script for partitioning the system's disks.";
};
};
};
config = {
partition = {
script = "echo 'hello world'";
};
};
}