mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
15 lines
333 B
Nix
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"; } ];
|
|
};
|
|
};
|
|
}
|