nheko: need to permit insecure libolm for now

This commit is contained in:
Trolli Schmittlauch 2024-09-07 19:17:37 +02:00
parent 40ebfb5720
commit 87dc330a7a
2 changed files with 10 additions and 0 deletions

View file

@ -8,6 +8,11 @@
{
# take overlays from flake
nixpkgs.overlays = lib.attrValues config.inputInjection.flake-inputs.self.overlays;
nixpkgs.config.permittedInsecurePackages = [
# (temporarily) permit the usage of libolm
"olm-3.2.16"
];
# List packages installed in system profile.
environment.systemPackages = with pkgs; [
wget

View file

@ -255,6 +255,11 @@ in
nixpkgs.overlays = import ../overlays.nix;
nixpkgs.config = {
# (temporarily) permit the usage of libolm
permittedInsecurePackages = [
"olm-3.2.16"
];
clementine.spotify = false;
vim = {
gui = "gtk3";