diff options
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 ]; }; } |