forked from colonelpanic/dotfiles
[NixOS] Spread home manager configuration out
This commit is contained in:
19
nixos/home-manager/git-sync.nix
Normal file
19
nixos/home-manager/git-sync.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ config, ... }: {
|
||||
services.git-sync = {
|
||||
enable = true;
|
||||
repositories = {
|
||||
config = {
|
||||
path = config.home.homeDirectory + "/config";
|
||||
uri = "git@github.com:IvanMalison/config.git";
|
||||
};
|
||||
org = {
|
||||
path = config.home.homeDirectory + "/org";
|
||||
uri = "git@github.com:IvanMalison/org.git";
|
||||
};
|
||||
password-store = {
|
||||
path = config.home.homeDirectory + "/.password-store";
|
||||
uri = "git@github.com:IvanMalison/.password-store.git";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user