diff options
author | Franck Cuny <franck@fcuny.net> | 2023-01-15 12:00:25 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2023-01-15 12:05:48 -0800 |
commit | e7b60899bcffd63576de1a5ca1bf140757aa1fa1 (patch) | |
tree | af04ad94b0ae388fdec61a8604c0d915ca34d246 /home/element | |
parent | ref(home/python): use the default version (diff) | |
download | world-e7b60899bcffd63576de1a5ca1bf140757aa1fa1.tar.gz |
ref(home/matrix): replace element by fractal
fractal(-next) is a client for matrix. It's GTK4 native and uses rust. While not much nicer looking than element, it's not an electron app, which I prefer (electron is slow, and element would freeze/crash from time to time). I renamed the module from element to matrix-client, in case I switch to something else in the future (or if there are additional configurations).
Diffstat (limited to 'home/element')
-rw-r--r-- | home/element/default.nix | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/home/element/default.nix b/home/element/default.nix deleted file mode 100644 index 1b6bb3b..0000000 --- a/home/element/default.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ lib, config, pkgs, ... }: -let cfg = config.my.home.element; -in -{ - options.my.home.element = with lib; { - enable = mkEnableOption "element configuration"; - }; - - config = - lib.mkIf cfg.enable { home.packages = with pkgs; [ element-desktop-wayland ]; }; -} |