1
0
Fork 0
mirror of https://git.oat.zone/dark-firepit/dotfiles synced 2024-04-27 23:35:05 +02:00
git.oat.zone--dark-firepit-.../modules/dev/haskell.nix
System administrator ec00c09f2e Dotfiles
2022-01-11 17:44:40 +00:00

29 lines
580 B
Nix

{ config, pkgs, lib, options, ... }:
with lib;
let
cfg = config.modules.dev.haskell;
in {
options.modules.dev.haskell = {
enable = mkOption {
type = types.bool;
default = false;
};
version = mkOption {
type = types.str;
default = "ghc8107";
};
packages = mkOption {
type = types.listOf types.attrs;
default = [ ];
};
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs.haskell.packages."${cfg.version}"; [
ghc
cabal-install
] ++ config.modules.dev.haskell.packages;
};
}