1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00
Files
niveum/example-git.nix
2019-06-05 19:37:13 +02:00

15 lines
333 B
Nix

{
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"; } ];
};
};
}