diff options
author | Franck Cuny <franck@fcuny.net> | 2023-03-19 08:21:14 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-03-19 08:21:14 -0700 |
commit | 925c1767c3d5cb5b0e650143b3a5e39b57f97408 (patch) | |
tree | 80768b78d14d6843a569869c23ffde32c31fc789 /home/matrix-client | |
parent | home/fonts: be more consistent in my choices (diff) | |
download | world-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.nix | 6 |
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 ]; }; } |