feat: signal

This commit is contained in:
jackjohn7 2026-04-09 01:44:13 -05:00
parent a808d28157
commit 29288276ea
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ self, inputs, ... }:
{
flake.nixosModules.communications =
{ pkgs, lib, ... }:
{
config = {
environment.systemPackages = with pkgs; [
signal-desktop
];
};
};
}