mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-09 03:56:04 +01:00
pgcli: init (#7072)
This commit is contained in:
parent
098e365dd8
commit
a1a72d18ee
8 changed files with 109 additions and 0 deletions
|
|
@ -333,6 +333,12 @@
|
||||||
github = "msyds";
|
github = "msyds";
|
||||||
githubId = 65362461;
|
githubId = 65362461;
|
||||||
};
|
};
|
||||||
|
nickthegroot = {
|
||||||
|
name = "Nick DeGroot";
|
||||||
|
email = "nick@nickthegroot.com";
|
||||||
|
github = "nickthegroot";
|
||||||
|
githubId = 1966472;
|
||||||
|
};
|
||||||
nikp123 = {
|
nikp123 = {
|
||||||
name = "nikp123";
|
name = "nikp123";
|
||||||
email = "nikp123@users.noreply.github.com";
|
email = "nikp123@users.noreply.github.com";
|
||||||
|
|
|
||||||
9
modules/misc/news/2025/05/2025-05-15_14-37-58.nix
Normal file
9
modules/misc/news/2025/05/2025-05-15_14-37-58.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
time = "2025-05-15T21:37:58+00:00";
|
||||||
|
condition = true;
|
||||||
|
message = ''
|
||||||
|
A new module is available: `programs.pgcli`
|
||||||
|
|
||||||
|
pgcli is a Python CLI that lets you connect to Postgres databases and run queries with syntax highlighting and auto-completion.
|
||||||
|
'';
|
||||||
|
}
|
||||||
|
|
@ -226,6 +226,7 @@ let
|
||||||
./programs/pay-respects.nix
|
./programs/pay-respects.nix
|
||||||
./programs/pazi.nix
|
./programs/pazi.nix
|
||||||
./programs/pet.nix
|
./programs/pet.nix
|
||||||
|
./programs/pgcli.nix
|
||||||
./programs/pidgin.nix
|
./programs/pidgin.nix
|
||||||
./programs/pistol.nix
|
./programs/pistol.nix
|
||||||
./programs/piston-cli.nix
|
./programs/piston-cli.nix
|
||||||
|
|
|
||||||
58
modules/programs/pgcli.nix
Normal file
58
modules/programs/pgcli.nix
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
inherit (lib)
|
||||||
|
mkEnableOption
|
||||||
|
mkPackageOption
|
||||||
|
mkOption
|
||||||
|
literalExpression
|
||||||
|
;
|
||||||
|
|
||||||
|
iniFormat = pkgs.formats.ini { };
|
||||||
|
cfg = config.programs.pgcli;
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
|
meta.maintainers = [ lib.hm.maintainers.nickthegroot ];
|
||||||
|
|
||||||
|
options.programs.pgcli = {
|
||||||
|
enable = mkEnableOption "pgcli";
|
||||||
|
|
||||||
|
package = mkPackageOption pkgs "pgcli" { nullable = true; };
|
||||||
|
|
||||||
|
settings = mkOption {
|
||||||
|
type = iniFormat.type;
|
||||||
|
default = { };
|
||||||
|
example = literalExpression ''
|
||||||
|
{
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -266,6 +266,7 @@ import nmtSrc {
|
||||||
./modules/programs/papis
|
./modules/programs/papis
|
||||||
./modules/programs/pay-respects
|
./modules/programs/pay-respects
|
||||||
./modules/programs/pet
|
./modules/programs/pet
|
||||||
|
./modules/programs/pgcli
|
||||||
./modules/programs/pistol
|
./modules/programs/pistol
|
||||||
./modules/programs/pls
|
./modules/programs/pls
|
||||||
./modules/programs/poetry
|
./modules/programs/poetry
|
||||||
|
|
|
||||||
4
tests/modules/programs/pgcli/default.nix
Normal file
4
tests/modules/programs/pgcli/default.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
{
|
||||||
|
pgcli-example-settings = ./example-settings.nix;
|
||||||
|
pgcli-empty-settings = ./empty-settings.nix;
|
||||||
|
}
|
||||||
7
tests/modules/programs/pgcli/empty-settings.nix
Normal file
7
tests/modules/programs/pgcli/empty-settings.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
programs.pgcli.enable = true;
|
||||||
|
|
||||||
|
nmt.script = ''
|
||||||
|
assertPathNotExists home-files/.config/pgcli/config
|
||||||
|
'';
|
||||||
|
}
|
||||||
23
tests/modules/programs/pgcli/example-settings.nix
Normal file
23
tests/modules/programs/pgcli/example-settings.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
{ config, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
expected = builtins.toFile "config" ''
|
||||||
|
[main]
|
||||||
|
vi=true
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
{
|
||||||
|
programs.pgcli = {
|
||||||
|
enable = true;
|
||||||
|
package = config.lib.test.mkStubPackage { };
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
main.vi = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nmt.script = ''
|
||||||
|
assertFileExists home-files/.config/pgcli/config
|
||||||
|
assertFileContent home-files/.config/pgcli/config '${expected}'
|
||||||
|
'';
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue