💧 elixir stuff

This commit is contained in:
2021-06-02 21:18:05 -04:00
parent 833b5e0706
commit 40d3e2be92
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" ];
}