feat(nix/prog): add psql

This commit is contained in:
Dmitriy Pleshevskiy 2022-04-05 17:47:31 +03:00
parent ef504fb5aa
commit d4238b1780
1 changed files with 9 additions and 4 deletions

View File

@ -20,11 +20,17 @@ in
home.stateVersion = "21.11";
home.packages = [
pkgs.xh # friendly and fast tool for sending HTTP requests
pkgs.fd # a simple, fast and user-friendly alternative to find
pkgs.bat # a cat clone with syntax highlighting and git integration
pkgs.xh # friendly and fast tool for sending HTTP requests
pkgs.fd # a simple, fast and user-friendly alternative to find
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.
programs.home-manager.enable = true;
@ -66,7 +72,6 @@ in
userName = secrets.git.name;
userEmail = secrets.git.email;
extraConfig = {
core.editor = "nvim";
init.defaultBranch = "main";
pull.rebase = true;
};