nixos/modules/programs/postgres.nix

14 lines
179 B
Nix
Raw Normal View History

# Enabled when: dev
{
config,
lib,
pkgs,
...
}: {
config = lib.mkIf config.fireproof.dev.enable {
environment.systemPackages = [
pkgs.postgresql
];
};
}