aboutsummaryrefslogtreecommitdiff
path: root/config/cabal/default.nix
blob: 19bcebf769cbd8cfc0e58381540250f2d6f641b6 (plain)
1
2
3
4
5
6
7
8
9
10
{ config, ... }:
{
  home.sessionVariables = {
    CABAL_CONFIG = "${config.xdg.configHome}/cabal/config";
  };
  xdg.configFile.cabal = {
    source = ./config;
    target = "cabal/config";
  };
}