Added pantalaimon and updated bash scripts
This commit is contained in:
Submodule bash-scripts updated: 7d83c328be...b8c01492e2
@@ -1,4 +1,5 @@
|
||||
{ pkgs, ... }: {
|
||||
|
||||
home.packages = with pkgs; [
|
||||
# Build deps
|
||||
nodejs
|
||||
@@ -38,4 +39,35 @@
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
# 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user