mirror of
https://github.com/nmasur/dotfiles
synced 2025-02-07 16:52:03 +00:00
25 lines
305 B
Nix
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
|
||
|
];
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|