Removed pantalaimon from emacs config

This commit is contained in:
Random936
2026-02-03 22:01:12 -05:00
parent c59f00815f
commit 993d8566c3

View File

@@ -39,35 +39,4 @@
]; ];
}; };
}; };
# Ignore insecure package libolm following deprecation.
# See: https://matrix.org/blog/2024/08/libolm-deprecation/
nixpkgs.config.permittedInsecurePackages = [
"olm-3.2.16"
];
# Also fix broken pytests for pantalaimon.
# See: https://github.com/NixOS/nixpkgs/issues/471407
nixpkgs.overlays = [
(final: prev: {
pantalaimon = prev.pantalaimon.overrideAttrs {
dontUsePytestCheck = "please dont";
};
})
];
services.pantalaimon = {
enable = true;
settings = {
Default = {
LogLevel = "debug";
SSL = true;
};
local-matrix = {
Homeserver = "https://matrix.org";
ListenAddress = "127.0.0.1";
ListenPort = 8008;
};
};
};
} }