qclk/firmware/base.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";
};
};
}