Add pantalaimon service for matrix encryption in ement.el

This commit is contained in:
Evie Litherland-Smith 2023-11-16 07:52:15 +00:00
parent 7fce1946ba
commit 3000e4f3d0

View file

@ -98,20 +98,36 @@
elfeed-tube-mpv elfeed-tube-mpv
]; ];
}; };
services.git-sync = { services = {
enable = true; git-sync = {
repositories = with config.home; { enable = true;
org = { repositories = with config.home; {
path = "${homeDirectory}/Org"; org = {
uri = "git+https://git.xenia.me.uk/xenia/org.git"; path = "${homeDirectory}/Org";
uri = "git+https://git.xenia.me.uk/xenia/org.git";
};
references = {
path = "${homeDirectory}/References";
uri = "git+https://git.xenia.me.uk/xenia/references.git";
};
elfeed = {
path = "${homeDirectory}/.elfeed";
uri = "git+https://git.xenia.me.uk/xenia/elfeed.git";
};
}; };
references = { };
path = "${homeDirectory}/References"; pantalaimon = {
uri = "git+https://git.xenia.me.uk/xenia/references.git"; enable = true;
}; settings = {
elfeed = { Default = {
path = "${homeDirectory}/.elfeed"; LogLevel = "Debug";
uri = "git+https://git.xenia.me.uk/xenia/elfeed.git"; SSL = true;
};
local-matrix = {
Homeserver = "https://matrix.tchncs.de";
ListenAddress = "127.0.0.1";
ListenPort = 8008;
};
}; };
}; };
}; };