mirror of
https://github.com/diced/zipline.git
synced 2025-12-05 20:40:12 -08:00
129 lines
3.1 KiB
Nix
129 lines
3.1 KiB
Nix
{
|
|
inputs = {
|
|
# required for some reason when entering the shell for devenv
|
|
devenv-root = {
|
|
url = "file+file:///dev/null";
|
|
flake = false;
|
|
};
|
|
|
|
# node 24.4.1, postgres 17
|
|
nixpkgs.url = "github:nixos/nixpkgs/b527e89270879aaaf584c41f26b2796be634bc9d";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
devenv.url = "github:cachix/devenv";
|
|
devenv.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nixConfig = {
|
|
extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
|
|
extra-substituters = "https://devenv.cachix.org";
|
|
};
|
|
|
|
outputs =
|
|
inputs@{ flake-parts, devenv-root, ... }:
|
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
|
imports = [
|
|
inputs.devenv.flakeModule
|
|
];
|
|
|
|
systems = [
|
|
"x86_64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-linux"
|
|
"aarch64-darwin"
|
|
];
|
|
|
|
perSystem =
|
|
{
|
|
config,
|
|
self',
|
|
inputs',
|
|
pkgs,
|
|
system,
|
|
...
|
|
}:
|
|
let
|
|
psqlConfig = {
|
|
username = "postgres";
|
|
password = "postgres";
|
|
database = "zipline";
|
|
};
|
|
in
|
|
{
|
|
devenv.shells.default = {
|
|
packages = with pkgs; [
|
|
git
|
|
|
|
# to generate thumbnails
|
|
ffmpeg
|
|
|
|
# for testing docker
|
|
colima
|
|
docker
|
|
docker-compose
|
|
];
|
|
|
|
scripts = {
|
|
pgup.exec = ''
|
|
process-compose up postgres -D
|
|
'';
|
|
|
|
minioup.exec = ''
|
|
process-compose up minio -D
|
|
'';
|
|
|
|
downall.exec = ''
|
|
process-compose down
|
|
'';
|
|
|
|
# ensure that volumes are mounted with write access for docker containers
|
|
start_colima.exec = ''
|
|
colima start --mount $PWD/themes:w --mount $PWD/uploads:w --mount $PWD/public:w
|
|
'';
|
|
};
|
|
|
|
enterShell = ''
|
|
export name="zipline-env";
|
|
echo -e "\n[$name]: run 'pgup' to start services, 'pgdown' to stop services";
|
|
'';
|
|
|
|
languages.javascript = {
|
|
enable = true;
|
|
package = pkgs.nodejs_24;
|
|
|
|
corepack.enable = true;
|
|
};
|
|
|
|
services = {
|
|
postgres = {
|
|
enable = true;
|
|
package = pkgs.postgresql_17;
|
|
|
|
initialScript = ''
|
|
CREATE ROLE "${psqlConfig.username}" WITH LOGIN PASSWORD '${psqlConfig.password}' SUPERUSER;
|
|
'';
|
|
|
|
initialDatabases = [
|
|
{
|
|
name = psqlConfig.database;
|
|
user = psqlConfig.username;
|
|
}
|
|
];
|
|
|
|
listen_addresses = "0.0.0.0";
|
|
port = 5432;
|
|
};
|
|
|
|
minio = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
process.managers.process-compose = {
|
|
tui.enable = false;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|