mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 13:22:04 +00:00
27 lines
362 B
Nix
27 lines
362 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 = lib.mkDefault [
|
|
pkgs.pgcli # Postgres client with autocomplete
|
|
];
|
|
|
|
programs.helix.enable = lib.mkDefault true;
|
|
|
|
};
|
|
|
|
}
|