dot_testing/home/python/default.nix

10 lines
153 B
Nix
Raw Normal View History

2023-12-21 15:26:09 -06:00
{ lib, config, pkgs, home, ... }:
{
home.file = {
".config/python/pythonrc.py" = {
2024-04-06 17:29:20 -05:00
source = ../../.config/python/pythonrc.py;
2023-12-21 15:26:09 -06:00
};
};
}