mirror of
https://codeberg.org/privacy1st/nix-git
synced 2024-11-21 22:03:19 +01:00
12 lines
328 B
Nix
12 lines
328 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
users.users.yoda = {
|
|
packages = with pkgs; [
|
|
signal-desktop # Signal client
|
|
];
|
|
};
|
|
|
|
# Signal does also use the NIXOS_OZONE_WL variable to enable Wayland support.
|
|
environment.sessionVariables.NIXOS_OZONE_WL = lib.mkIf (config.services.xserver.displayManager.gdm.wayland) "1";
|
|
}
|