mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-22 22:09:34 +01:00
14 lines
269 B
Nix
14 lines
269 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
# Matrix chat client.
|
|
(
|
|
if (config.services.xserver.displayManager.gdm.wayland)
|
|
then element-desktop-wayland
|
|
else element-desktop
|
|
)
|
|
];
|
|
};
|
|
}
|