1
0
mirror of https://github.com/nmasur/dotfiles synced 2025-04-10 12:51:12 +00:00
2025-03-08 01:31:42 +00:00

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