about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/python/default.nix
blob: 826d466d1d24d8fc2ef9fe9ebe650cfd742123b0 (plain) (blame)
1
2
3
4
5
6
{config, ...}: {
  xdg.configFile."python/pythonrc".source = ./pythonrc.py;
  programs.zsh.sessionVariables = {
    "PYTHONSTARTUP" = "${config.xdg.configHome}/python/pythonrc";
  };
}