nixconf/modules/features/layers/communications.nix
2026-04-09 01:44:13 -05:00

13 lines
215 B
Nix

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