mirror of
https://github.com/nix-community/home-manager.git
synced 2026-06-05 21:02:51 +00:00
`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.
56 lines
1.1 KiB
Nix
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;
|
|
};
|
|
};
|
|
}
|