Files
nixos/home/gui/chat.nix
T
2022-09-07 20:01:51 -05:00

10 lines
138 B
Nix

{ pkgs, lib, ... }:
{
home.packages = with pkgs; ( if ( lib.hasSuffix "-darwin" pkgs.system) then
[] else
[
element-desktop
]);
}