this repo has no description
1{
2 description = "Elixir's application";
3
4 inputs.nixpkgs.url = "flake:nixpkgs";
5 inputs.flake-parts.url = "github:hercules-ci/flake-parts";
6
7 inputs.devenv = {
8 url = "github:cachix/devenv/python-rewrite";
9 inputs.nixpkgs.follows = "nixpkgs";
10 };
11
12 outputs = {
13 self,
14 flake-parts,
15 ...
16 } @ inputs:
17 flake-parts.lib.mkFlake {inherit inputs;} {
18 imports = [
19 inputs.devenv.flakeModule
20 ];
21
22 systems = [
23 "x86_64-linux"
24 "x86_64-darwin"
25 "aarch64-linux"
26 "aarch64-darwin"
27 ];
28
29 perSystem = {
30 self',
31 inputs',
32 pkgs,
33 ...
34 }: {
35 devenv.shells.default = {
36 language.elixir.enable = true;
37
38 packages = [
39 pkgs.lexical
40 ];
41 };
42 };
43 };
44}