mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
17 lines
263 B
Nix
17 lines
263 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.options) mkOption;
|
|
in {
|
|
options = with lib.types; {
|
|
deploy.system = mkOption {
|
|
type = unspecified;
|
|
readOnly = true;
|
|
};
|
|
};
|
|
config = {
|
|
deploy.system = config.system.build.toplevel;
|
|
};
|
|
}
|