mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
16 lines
185 B
Nix
16 lines
185 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
let
|
|
master = import inputs.nixpkgs-master {
|
|
system = "x86_64-linux";
|
|
};
|
|
in
|
|
{
|
|
services.postgresql.package = pkgs.postgresql_17;
|
|
}
|