about summary refs log tree commit diff
path: root/home/matrix-client/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-07 09:10:35 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-07 09:10:35 -0700
commitcf1bfa64f6c043a16162fbe9b98d6569872672c0 (patch)
treeedc3e0fda7a0da8b89b54a5186328cdea38b57ab /home/matrix-client/default.nix
parentprofiles/laptop: more tweaks (diff)
downloadworld-cf1bfa64f6c043a16162fbe9b98d6569872672c0.tar.gz
profiles/workstation: move element (matrix client)
Diffstat (limited to 'home/matrix-client/default.nix')
-rw-r--r--home/matrix-client/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/home/matrix-client/default.nix b/home/matrix-client/default.nix
deleted file mode 100644
index 5438c3f..0000000
--- a/home/matrix-client/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ lib, config, pkgs, ... }:
-let cfg = config.my.home.matrix-client;
-in
-{
-  options.my.home.matrix-client = with lib; {
-    enable = mkEnableOption "matrix client configuration";
-  };
-
-  config =
-    lib.mkIf cfg.enable { home.packages = with pkgs; [ element-desktop-wayland ]; };
-}