mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
17 lines
231 B
Nix
Executable file
17 lines
231 B
Nix
Executable file
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
home.packages = builtins.attrValues {
|
|
inherit (pkgs.haskellPackages)
|
|
cabal-install
|
|
haskell-language-server
|
|
fourmolu
|
|
cabal-fmt
|
|
hlint
|
|
cabal-gild
|
|
ghc
|
|
;
|
|
};
|
|
}
|