Add rustdesk to communication package set

(probably belongs elsewhere but whatever)
This commit is contained in:
NullBite 2024-02-18 19:09:40 +01:00
parent ed3dc89b2c
commit 4e3d6d222e
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -1,6 +1,10 @@
{ pkgs, lib, config, osConfig ? {}, ... }:
{ pkgs, lib, config, osConfig ? {}, inputs, ... }:
let
cfg = config.nixfiles.packageSets.communication;
rustdesk-pkg = if (lib.strings.hasInfix "23.11" lib.version) then
inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}.rustdesk-flutter
else
pkgs.rustdesk-flutter;
in
{
options.nixfiles.packageSets.communication = {
@ -13,6 +17,7 @@ in
signal-desktop
thunderbird
discord
rustdesk-pkg
] ++ [
irssi
];