7 lines
135 B
Python
7 lines
135 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
from git import Repo
|
||
|
import shutil
|
||
|
import os
|
||
|
|
||
|
GIT_REPO_URL = "git@git.seanomik.net:SeanOMik/nixos-dotfiles.git"
|