feat(nix/prog): add psql
This commit is contained in:
parent
ef504fb5aa
commit
d4238b1780
1 changed files with 9 additions and 4 deletions
|
@ -23,8 +23,14 @@ in
|
||||||
pkgs.xh # friendly and fast tool for sending HTTP requests
|
pkgs.xh # friendly and fast tool for sending HTTP requests
|
||||||
pkgs.fd # a simple, fast and user-friendly alternative to find
|
pkgs.fd # a simple, fast and user-friendly alternative to find
|
||||||
pkgs.bat # a cat clone with syntax highlighting and git integration
|
pkgs.bat # a cat clone with syntax highlighting and git integration
|
||||||
|
|
||||||
|
pkgs.postgresql_12 # 🤷 I need only psql
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
EDITOR = "nvim";
|
||||||
|
};
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
@ -66,7 +72,6 @@ in
|
||||||
userName = secrets.git.name;
|
userName = secrets.git.name;
|
||||||
userEmail = secrets.git.email;
|
userEmail = secrets.git.email;
|
||||||
extraConfig = {
|
extraConfig = {
|
||||||
core.editor = "nvim";
|
|
||||||
init.defaultBranch = "main";
|
init.defaultBranch = "main";
|
||||||
pull.rebase = true;
|
pull.rebase = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue