aboutsummaryrefslogtreecommitdiff
path: root/config/clang/default.nix
blob: 04063b1704638ece55deeb06068451fc41b5a9b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ config, ... }:
let
  home-dir = config.home.homeDirectory;
  nixpath = "${home-dir}/.nix-profile";
in
{
  home.sessionVariables = {
    C_INCLUDE_PATH = "${nixpath}/include";
    CPLUS_INCLUDE_PATH = "${nixpath}/include";
  };
}