dot_testing/home/python/default.nix
stupidcomputer 82636ae45f update python installation configuration
some changes:
- move pythonrc to be copied to ~/.config/python/pythonrc*.py*, instead
  of ~/.config/python/pythonrc.py
- remove spurious print statement from pythonrc.py
2024-04-08 11:39:48 -05:00

10 lines
153 B
Nix

{ lib, config, pkgs, home, ... }:
{
home.file = {
".config/python/pythonrc.py" = {
source = ../../.config/python/pythonrc.py;
};
};
}