25 lines
305 B
Nix
Raw Normal View History

2025-01-20 22:35:40 -05:00
{
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
];
};
}