blob: 580cbbfacb1d92fe5168c751beb1b9dbfcb37705 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ config, ... }:
{
# deploy:
# - push code
# - build in order to get the new hash (nix build .#remarvin)
# - update hash in the package (//nix/pkgs/remarvin/default.nix)
# - deploy
services.emile.remarvin = {
enable = true;
username = "marvin_test1";
homeserver = "matrix.org";
accesstoken = config.age.secrets.remarvin_accesstoken.path;
};
}
|