mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-01-04 00:52:22 +00:00
13 lines
243 B
Nix
13 lines
243 B
Nix
|
{lib, ...}: let
|
||
|
inherit (lib.types) package;
|
||
|
inherit (lib.options) mkOption;
|
||
|
in {
|
||
|
options.vim.build = {
|
||
|
finalPackage = mkOption {
|
||
|
type = package;
|
||
|
readOnly = true;
|
||
|
description = "final output package";
|
||
|
};
|
||
|
};
|
||
|
}
|