From 5302dbbab879e71946c4e771f3f23fa41e12c4c9 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Mon, 12 Jun 2023 16:30:52 +0200 Subject: [PATCH] Switch to nheko --- modules/programs/element/default.nix | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/modules/programs/element/default.nix b/modules/programs/element/default.nix index 7601553d..bcc9abf6 100644 --- a/modules/programs/element/default.nix +++ b/modules/programs/element/default.nix @@ -8,15 +8,12 @@ config = lib.mkIf config.chvp.programs.element.enable { chvp.base.zfs.homeLinks = [ - { path = ".config/Element"; type = "cache"; } + { path = ".config/nheko"; type = "data"; } + { path = ".local/share/nheko"; type = "data"; } + { path = ".cache/nheko"; type = "cache"; } ]; home-manager.users.charlotte = { ... }: { - home = { - packages = [ pkgs.element-desktop ]; - sessionVariables = { - NIXOS_OZONE_WL = "1"; - }; - }; + home.packages = [ pkgs.nheko ]; }; }; }