depot/third_party/home-manager/tests/modules/services/pantalaimon/basic-configuration.nix
Default email cfcd52ff70 Project import generated by Copybara.
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
2021-11-05 00:42:44 +08:00

27 lines
687 B
Nix

{ config, pkgs, ... }:
{
config = {
services.pantalaimon = {
enable = true;
package = config.lib.test.mkStubPackage { outPath = "@pantalaimon@"; };
settings = {
Default = {
LogLevel = "Debug";
SSL = true;
};
local-matrix = {
Homeserver = "https://matrix.org";
ListenAddress = "127.0.0.1";
ListenPort = 8008;
};
};
};
nmt.script = ''
serviceFile=home-files/.config/systemd/user/pantalaimon.service
assertFileExists $serviceFile
assertFileRegex $serviceFile 'ExecStart=@pantalaimon@/bin/pantalaimon -c /nix/store/.*-pantalaimon.conf'
'';
};
}