programming: move from profiles to modules

This commit is contained in:
Infinidoge 2023-07-29 18:28:38 -04:00
parent 7619efa202
commit acab26156e
10 changed files with 0 additions and 11 deletions

View file

@ -0,0 +1,16 @@
{ pkgs, lib, ... }: {
environment.systemPackages = with pkgs; lib.lists.flatten [
haskell-language-server
ghc
cabal-install
ormolu
(with haskellPackages; [
hoogle
])
stack
# stack2nix
cabal2nix
];
}