this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 43 lines 796 B view raw
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 { 14 self, 15 flake-parts, 16 ... 17 }@inputs: 18 flake-parts.lib.mkFlake { inherit inputs; } { 19 imports = [ 20 inputs.devenv.flakeModule 21 ]; 22 23 systems = [ 24 "x86_64-linux" 25 "x86_64-darwin" 26 "aarch64-linux" 27 "aarch64-darwin" 28 ]; 29 30 perSystem = 31 { 32 self', 33 inputs', 34 pkgs, 35 ... 36 }: 37 { 38 devenv.shells.default = { 39 language.elixir.enable = true; 40 }; 41 }; 42 }; 43}