Add matrix client

This commit is contained in:
2026-02-13 22:03:21 +01:00
parent 3992da067f
commit 68033bd14a
3 changed files with 9 additions and 0 deletions

View File

@@ -14,6 +14,7 @@
../modules/garbage-collection.nix
../modules/printing.nix
../modules/docker.nix
../modules/matrix.nix
];
boot.loader.systemd-boot.enable = true;

View File

@@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
element-desktop
];
}

View File

@@ -10,3 +10,4 @@
virt-manager.enable = true;
};
}