stupidcomputer
82636ae45f
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
10 lines
153 B
Nix
10 lines
153 B
Nix
{ lib, config, pkgs, home, ... }:
|
|
|
|
{
|
|
home.file = {
|
|
".config/python/pythonrc.py" = {
|
|
source = ../../.config/python/pythonrc.py;
|
|
};
|
|
};
|
|
}
|