NixOS/options/environments.nix

12 lines
181 B
Nix
Raw Normal View History

{ lib, ... }:
let
inherit (lib) mkEnableOption;
in
{
options.profile = {
home.environments = {
protobuf.enable = mkEnableOption "protobuf environments";
};
};
}