mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-24 22:58:38 +01:00
meta: Add postgres
Useful for testing purposes without having to spin up a docker container.
This commit is contained in:
parent
c7f4111055
commit
68bcfce997
@ -18,6 +18,7 @@
|
|||||||
./packages.nix
|
./packages.nix
|
||||||
./piper.nix
|
./piper.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
|
./postgres.nix
|
||||||
./resolved.nix
|
./resolved.nix
|
||||||
./starship.nix
|
./starship.nix
|
||||||
./stylix.nix
|
./stylix.nix
|
||||||
|
9
modules/postgres.nix
Normal file
9
modules/postgres.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.postgresql.enable = true;
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
pgcli
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user