nixos-systems/roles/nidus-sync.nix
Eli Ribble bf861cca28
Initial add of pgadmin to nidus systems
This is to allow Ben to do his own delving into the data we have
2026-05-08 16:35:49 +00:00

23 lines
581 B
Nix

{ inputs, lib, pkgs, ...}:
{
environment.systemPackages = [
pkgs.google-chrome
# Create a wrapper for google-chrome command
(pkgs.writeShellScriptBin "google-chrome" ''
exec ${pkgs.google-chrome}/bin/google-chrome-stable "$@"
'')
];
fonts.packages = with pkgs; [
corefonts
liberation_ttf
];
fonts.fontDir.enable = true;
myModules.asterisk.enable = false;
myModules.caddy.enable = true;
myModules.qgis.enable = false;
myModules.pgadmin.enable = true;
myModules.nidus-sync.enable = true;
myModules.restic.role = "nidus";
myModules.tegola.enable = true;
}