{
  config,
  lib,
  pkgs,
  ...
}:

let
  cfg = config.nmasur.profiles.developer;
in

{

  options.nmasur.profiles.developer.enable = lib.mkEnableOption "Developer tools";

  config = lib.mkIf cfg.enable {

    home.packages = [
      pkgs.pgcli # Postgres client with autocomplete
    ];

  };

}