ADD dev.nix - postgresql database
This commit is contained in:
parent
1c83e1e487
commit
e36966c7a7
|
@ -12,6 +12,7 @@
|
||||||
./services.nix
|
./services.nix
|
||||||
./scanner.nix
|
./scanner.nix
|
||||||
../modules/common.nix
|
../modules/common.nix
|
||||||
|
./dev.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Use the GRUB 2 boot loader.
|
# Use the GRUB 2 boot loader.
|
||||||
|
@ -87,7 +88,6 @@ fonts = {
|
||||||
terminus_font
|
terminus_font
|
||||||
proggyfonts
|
proggyfonts
|
||||||
dejavu_fonts
|
dejavu_fonts
|
||||||
font-awesome-ttf
|
|
||||||
font-awesome
|
font-awesome
|
||||||
nerdfonts
|
nerdfonts
|
||||||
source-code-pro
|
source-code-pro
|
||||||
|
|
|
@ -0,0 +1,32 @@
|
||||||
|
{config, pkgs, ...}:
|
||||||
|
{
|
||||||
|
# home.packages = with pkgs; [
|
||||||
|
# nodejs
|
||||||
|
# ];
|
||||||
|
|
||||||
|
# Enable PostgreSQL
|
||||||
|
services.postgresql = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.postgresql_14 ;
|
||||||
|
enableTCPIP = true;
|
||||||
|
authentication = "
|
||||||
|
local all all trust
|
||||||
|
host all all 127.0.0.1/32 trust
|
||||||
|
";
|
||||||
|
|
||||||
|
# Ensure the database, user, and permissions always exist
|
||||||
|
ensureDatabases = [ "pizzajoffredb" ];
|
||||||
|
ensureUsers = [
|
||||||
|
{ name = "pizzajoffre";
|
||||||
|
ensurePermissions."DATABASE devpj" = "ALL PRIVILEGES";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
# services.pgadmin = {
|
||||||
|
# openFirewall = true;
|
||||||
|
# enable = true;
|
||||||
|
# initialEmail = "pizzajoffre@gmail.com";
|
||||||
|
# initialPasswordFile = /run/pgadmin;
|
||||||
|
# };
|
||||||
|
|
||||||
|
}
|
|
@ -10,6 +10,7 @@
|
||||||
./emacs.nix
|
./emacs.nix
|
||||||
./i3status.nix
|
./i3status.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
|
./himalaya.nix
|
||||||
];
|
];
|
||||||
home.keyboard = {
|
home.keyboard = {
|
||||||
layout = "fr";
|
layout = "fr";
|
||||||
|
|
|
@ -23,13 +23,12 @@
|
||||||
texlive.combined.scheme-full
|
texlive.combined.scheme-full
|
||||||
hugo
|
hugo
|
||||||
eww
|
eww
|
||||||
polybar
|
|
||||||
alacritty
|
alacritty
|
||||||
youtube-dl
|
youtube-dl
|
||||||
barrier
|
|
||||||
zola
|
zola
|
||||||
keepassxc
|
keepassxc
|
||||||
zlib
|
zlib
|
||||||
python3
|
python3
|
||||||
|
nodejs
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue