16 lines
215 B
Nix
16 lines
215 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./docker.nix
|
|
./dotnet.nix
|
|
./node.nix
|
|
./ollama.nix
|
|
./rust.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
unstable.libpq # Required for PostgreSQL
|
|
];
|
|
}
|