aboutsummaryrefslogtreecommitdiff
path: root/home/matrix-client
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-03-19 08:21:14 -0700
committerFranck Cuny <franck@fcuny.net>2023-03-19 08:21:14 -0700
commit925c1767c3d5cb5b0e650143b3a5e39b57f97408 (patch)
tree80768b78d14d6843a569869c23ffde32c31fc789 /home/matrix-client
parenthome/fonts: be more consistent in my choices (diff)
downloadinfra-925c1767c3d5cb5b0e650143b3a5e39b57f97408.tar.gz
home/matrix: switch back to element
fractal requires the gnome key chain but I got rid of it.
Diffstat (limited to '')
-rw-r--r--home/matrix-client/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/home/matrix-client/default.nix b/home/matrix-client/default.nix
index a5a420f..5438c3f 100644
--- a/home/matrix-client/default.nix
+++ b/home/matrix-client/default.nix
@@ -6,10 +6,6 @@ in
enable = mkEnableOption "matrix client configuration";
};
- # https://gitlab.gnome.org/GNOME/fractal
- # fractal-next is a GTK4 client for matrix, using the
- # matrix-rust-sdk. I used to use element, an electron application,
- # and it had a number of issues (freeze, crash, heavy, ...).
config =
- lib.mkIf cfg.enable { home.packages = with pkgs; [ fractal-next ]; };
+ lib.mkIf cfg.enable { home.packages = with pkgs; [ element-desktop-wayland ]; };
}