feat: add 'comms' module

This commit is contained in:
2026-03-11 21:25:32 +01:00
parent 9cfe4d3c43
commit ab87e785b6
7 changed files with 51 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
{
config,
lib,
pkgs,
...
}:
{
config = lib.mkIf config.comms.signal.enable {
home.packages = with pkgs; [
(if config.lib ? nixGL then config.lib.nixGL.wrap signal-desktop else signal-desktop)
];
};
}