🧹 major cleanup. re-thinking this setup

This commit is contained in:
2021-09-28 21:37:26 -04:00
parent 2c63f63de7
commit 8cd3ca08d1
25 changed files with 17 additions and 506 deletions

View File

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

View File

@ -1,22 +0,0 @@
{ pkgs, ... }:
{
home.sessionPath = [ "$HOME/.go/bin" ];
home.packages = with pkgs; [
go
gocode
golangci-lint
gomodifytags
gopls
gotests
gore
];
programs = {
zsh = {
oh-my-zsh = { plugins = [ "golang" ]; };
sessionVariables = { GOPATH = "$HOME/.go"; };
};
};
}

View File

@ -1,15 +0,0 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
ghc
stack
stylish-haskell
haskellPackages.ghcide
haskellPackages.hoogle
];
home.file.".ghci".text = ''
:set prompt "λ> "
'';
}

View File

@ -1,10 +0,0 @@
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
nodejs
nodePackages.js-beautify
nodePackages.prettier
yarn
];
}

View File

@ -1,12 +0,0 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
pipenv
python3
python38Packages.black
python38Packages.isort
python38Packages.pyflakes
python38Packages.pytest
];
}

View File

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

View File

@ -1,6 +0,0 @@
{ config, lib, pkgs, ... }:
{
home.sessionPath = [ "$HOME/.cargo/bin" ];
home.packages = with pkgs; [ cargo rustc rust-analyzer ];
}