mirror of
https://github.com/makeplane/plane.git
synced 2025-12-25 16:19:43 +01:00
16 lines
315 B
Nix
16 lines
315 B
Nix
|
|
{ pkgs, ... }: {
|
||
|
|
|
||
|
|
# Which nixpkgs channel to use.
|
||
|
|
channel = "stable-23.11"; # or "unstable"
|
||
|
|
|
||
|
|
# Use https://search.nixos.org/packages to find packages
|
||
|
|
packages = [
|
||
|
|
pkgs.nodejs_20
|
||
|
|
pkgs.python3
|
||
|
|
];
|
||
|
|
|
||
|
|
services.docker.enable = true;
|
||
|
|
services.postgres.enable = true;
|
||
|
|
services.redis.enable = true;
|
||
|
|
|
||
|
|
}
|