mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
23 lines
308 B
Nix
23 lines
308 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.foo = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
};
|
|
|
|
options.bar = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
};
|
|
|
|
options.baz = lib.mkOption {
|
|
default = false;
|
|
type = lib.types.bool;
|
|
};
|
|
|
|
config = {
|
|
far = true;
|
|
};
|
|
}
|