Add nix shell with some dependencies to ease bootstrap of local environment
This commit is contained in:
parent
1728b77446
commit
a68134667c
|
@ -85,6 +85,11 @@ modules:
|
||||||
- work_contract
|
- work_contract
|
||||||
agenda:
|
agenda:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
calendars:
|
||||||
|
global:
|
||||||
|
enabled: true
|
||||||
|
organizations:
|
||||||
|
enabled: true
|
||||||
events_types:
|
events_types:
|
||||||
- name: Accompagnements individuels
|
- name: Accompagnements individuels
|
||||||
- name: Permis accéléré
|
- name: Permis accéléré
|
||||||
|
@ -98,3 +103,5 @@ modules:
|
||||||
- name: Information collective
|
- name: Information collective
|
||||||
- name: Autre
|
- name: Autre
|
||||||
|
|
||||||
|
# knowledge:
|
||||||
|
# enabled: true
|
||||||
|
|
|
@ -6,7 +6,7 @@ images:
|
||||||
newName: "coopgo-apps/parcoursmob"
|
newName: "coopgo-apps/parcoursmob"
|
||||||
- name: git.coopgo.io/coopgo-platform/mobility-accounts
|
- name: git.coopgo.io/coopgo-platform/mobility-accounts
|
||||||
newName: "coopgo-platform/mobility-accounts"
|
newName: "coopgo-platform/mobility-accounts"
|
||||||
- name: git.coopgo.io/coopgo-platform/fleets
|
# - name: git.coopgo.io/coopgo-platform/fleets
|
||||||
newName: "coopgo-platform/fleets"
|
# newName: "coopgo-platform/fleets"
|
||||||
- name: git.coopgo.io/coopgo-platform/agenda
|
- name: git.coopgo.io/coopgo-platform/agenda
|
||||||
newName: "coopgo-platform/agenda"
|
newName: "coopgo-platform/agenda"
|
||||||
|
|
|
@ -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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue