dot_testing/home/python/default.nix

10 lines
131 B
Nix
Raw Normal View History

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