blob: 74a2e4c04ef185511ceece91990eb5cc49c61a81 (
plain) (
blame)
1
2
3
4
5
6
|
{config, ...}: {
xdg.configFile."python/pythonrc".source = ./pythonrc;
programs.zsh.sessionVariables = {
"PYTHONSTARTUP" = "${config.xdg.configHome}/python/pythonrc";
};
}
|