mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
13 lines
357 B
Nix
13 lines
357 B
Nix
{ config, lib, ... }:
|
|
{
|
|
|
|
options.haskell.enable = lib.mkEnableOption "Haskell programming language.";
|
|
|
|
config = lib.mkIf config.haskell.enable {
|
|
|
|
# Binary Cache for Haskell.nix
|
|
nix.settings.trusted-public-keys = [ "hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" ];
|
|
nix.settings.substituters = [ "https://cache.iog.io" ];
|
|
};
|
|
}
|