💧 elixir stuff

This commit is contained in:
James Walker 2021-06-02 21:18:05 -04:00
parent 833b5e0706
commit 40d3e2be92
Signed by: walkah
GPG Key ID: 3C127179D6086E93
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,6 @@
{ config, pkgs, ... }: {
imports = [
./modules/elixir.nix
./modules/golang.nix
./modules/haskell.nix
./modules/nodejs.nix

7
modules/elixir.nix Normal file
View File

@ -0,0 +1,7 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [ elixir ];
programs.zsh.oh-my-zsh.plugins = [ "mix" ];
}