Add nix shell with some dependencies to ease bootstrap of local environment

This commit is contained in:
Arnaud Delcasse 2024-11-27 19:11:38 +01:00
parent 1728b77446
commit a68134667c
3 changed files with 41 additions and 18 deletions

View File

@ -85,6 +85,11 @@ modules:
- work_contract
agenda:
enabled: true
calendars:
global:
enabled: true
organizations:
enabled: true
events_types:
- name: Accompagnements individuels
- name: Permis accéléré
@ -98,3 +103,5 @@ modules:
- name: Information collective
- name: Autre
# knowledge:
# enabled: true

View File

@ -6,7 +6,7 @@ images:
newName: "coopgo-apps/parcoursmob"
- name: git.coopgo.io/coopgo-platform/mobility-accounts
newName: "coopgo-platform/mobility-accounts"
- name: git.coopgo.io/coopgo-platform/fleets
newName: "coopgo-platform/fleets"
# - name: git.coopgo.io/coopgo-platform/fleets
# newName: "coopgo-platform/fleets"
- name: git.coopgo.io/coopgo-platform/agenda
newName: "coopgo-platform/agenda"

16
shell.nix Normal file
View File

@ -0,0 +1,16 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
tilt
k3d
neovim
kubectl
protobuf
protoc-gen-go
protoc-gen-go-grpc
];
}