Files
dotfiles/home/apps/matrix.nix
servius 452426f363
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m24s
feat: Added element
2026-03-07 02:14:01 +05:30

13 lines
164 B
Nix

{
pkgs,
lib,
device,
...
}: {
home.packages = lib.optionals (device.is "ryu") [
pkgs.fluffychat
pkgs.element-desktop
# pkgs.quaternion
];
}