{ config, lib, pkgs, ... }: { imports = [ ]; options.me = { nixdev.enable = lib.mkOption { type = lib.types.bool; default = false; example = true; description = "Whether we want to install nixdev."; }; }; config = lib.mkIf config.me.nixdev.enable { environment.systemPackages = with pkgs; [ yaml2nix toml2nix ]; }; }