mirror of
https://github.com/larstvei/nix-config.git
synced 2025-09-15 19:40:12 +00:00
13 lines
184 B
Nix
13 lines
184 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
(haskell.packages.ghc96.ghcWithPackages (
|
|
ps: with ps; [
|
|
QuickCheck
|
|
]
|
|
))
|
|
cabal-install
|
|
stack
|
|
];
|
|
}
|