14 lines
304 B
Nix
14 lines
304 B
Nix
# SPDX-FileCopyrightText: 2025 Ethan Reece <contact@ethanreece.com>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
lib.mkIf config.flakeSettings.graphical {
|
|
home.packages =
|
|
if pkgs.stdenv.hostPlatform.isDarwin then [ pkgs.signal-desktop-bin ] else [ pkgs.signal-desktop ];
|
|
}
|