From ce80f145be13118418bcf0abfc959d38a07a63d4 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 12 Dec 2024 12:07:22 -0600 Subject: [PATCH] adding pantalaimon --- flake.nix | 8 +++++++- home/home.nix | 34 +++++++++++++++++----------------- modules/desktop.nix | 1 + 3 files changed, 25 insertions(+), 18 deletions(-) diff --git a/flake.nix b/flake.nix index 2b9a950..e3bb751 100644 --- a/flake.nix +++ b/flake.nix @@ -76,7 +76,13 @@ pkgsForSystem = import nixpkgs { inherit system; - config = { allowUnfree = true; }; + + config = { + allowUnfree = true; + permittedInsecurePackages = [ + "olm-3.2.16" + ]; + }; overlays = [ emacs.overlays.default # rust-overlay.overlays.default diff --git a/home/home.nix b/home/home.nix index 01f3399..aa158f6 100644 --- a/home/home.nix +++ b/home/home.nix @@ -277,22 +277,22 @@ in pueue.enable = true; # For matrix clients that don't have e2ee - # pantalaimon = { - # enable = true; - # settings = { - # Default = { - # LogLevel = "Debug"; - # SSL = true; - # }; - # local-matrix = { - # Homeserver = "https://matrix.tfcconnection.org"; - # ListenAddress = "127.0.0.1"; - # ListenPort = 8008; - # # SSL = true; - # # IgnoreVerification = true; - # }; - # }; - # }; + pantalaimon = { + enable = true; + settings = { + Default = { + LogLevel = "Debug"; + SSL = true; + }; + local-matrix = { + Homeserver = "https://matrix.tfcconnection.org"; + ListenAddress = "127.0.0.1"; + ListenPort = 8008; + # SSL = true; + # IgnoreVerification = true; + }; + }; + }; }; # stylix = { @@ -398,7 +398,7 @@ in name = "Papirus-Dark"; package = pkgs.papirus-icon-theme; }; - theme.name = "Breeze"; + # theme.name = "Breeze"; gtk3.extraConfig = { gtk-application-prefer-dark-theme = true; gtk-button-images = true; diff --git a/modules/desktop.nix b/modules/desktop.nix index 20811a9..d7c3036 100644 --- a/modules/desktop.nix +++ b/modules/desktop.nix @@ -14,6 +14,7 @@ sandbox = "relaxed"; }; + # Use the systemd-boot EFI boot loader. boot = { kernelPackages = pkgs.linuxPackages_zen;