Files
home-manager/modules/programs/pgcli.nix
Austin Horstman 355734d876 treewide: remove literalExpression where unneeded
`literalExpression` is intended just to signify code that needs to stay
a string that gets represented exactly as-is for docs. It has been
misused heavily and people get confused repeatedly on when or not to use
it because of the rampant misuse.
2026-05-17 21:43:25 -05:00

56 lines
1.1 KiB
Nix

{
pkgs,
config,
lib,
...
}:
let
inherit (lib)
mkEnableOption
mkPackageOption
mkOption
;
iniFormat = pkgs.formats.ini { };
cfg = config.programs.pgcli;
in
{
meta.maintainers = [ lib.maintainers.nickthegroot ];
options.programs.pgcli = {
enable = mkEnableOption "pgcli";
package = mkPackageOption pkgs "pgcli" { nullable = true; };
settings = mkOption {
inherit (iniFormat) type;
default = { };
example = {
main = {
smart_completion = true;
vi = true;
};
"named queries".simple = "select * from abc where a is not Null";
};
description = ''
Configuration written to
{file}`$XDG_CONFIG_HOME/pgcli/config`.
See <https://www.pgcli.com/config>
for more information.
'';
};
};
config = lib.mkIf cfg.enable {
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
xdg.configFile."pgcli/config" = lib.mkIf (cfg.settings != { }) {
source = iniFormat.generate "pgcli-config" cfg.settings;
};
};
}