12 lines
181 B
Nix
12 lines
181 B
Nix
|
{ lib, ... }:
|
||
|
let
|
||
|
inherit (lib) mkEnableOption;
|
||
|
in
|
||
|
{
|
||
|
options.profile = {
|
||
|
home.environments = {
|
||
|
protobuf.enable = mkEnableOption "protobuf environments";
|
||
|
};
|
||
|
};
|
||
|
}
|