20 lines
277 B
Nix
20 lines
277 B
Nix
|
{ lib, ... }:
|
||
|
let
|
||
|
inherit (lib) mkOption;
|
||
|
in
|
||
|
{
|
||
|
options.my.build = {
|
||
|
image = mkOption {
|
||
|
description = "Final output image for distribution.";
|
||
|
type = lib.types.unspecified;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = {
|
||
|
system = {
|
||
|
stateVersion = "24.11";
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
|