1
0
mirror of https://github.com/kmein/niveum synced 2026-03-17 18:41:09 +01:00

+ virtualenv, ~ git-quick-stats

This commit is contained in:
Kierán Meinhardt
2019-06-05 19:37:13 +02:00
parent 75bf251bf7
commit 4a46aad1c8
4 changed files with 43 additions and 3 deletions

14
example-git.nix Normal file
View File

@@ -0,0 +1,14 @@
{
imports = [ modules/git.nix ];
niveum.git = {
enable = true;
repositories.niveum = {
enable = true;
location = "/home/kfm/prog/git/niveum";
remotes.origin = https://github.com/kmein/niveum;
branches = [ "master" ];
autoFetch = [ { remote = "origin"; branch = "master"; } ];
};
};
}