2025-01-28 18:24:07 -05:00

25 lines
305 B
Nix

{
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 = with pkgs; [
pgcli # Postgres client with autocomplete
];
};
}