10 lines
131 B
Nix
10 lines
131 B
Nix
|
{ lib, config, pkgs, home, ... }:
|
||
|
|
||
|
{
|
||
|
home.file = {
|
||
|
".config/python/pythonrc" = {
|
||
|
source = ./pythonrc.py;
|
||
|
};
|
||
|
};
|
||
|
}
|