nix-config/home/laozi/common/optional/comms/default.nix

15 lines
495 B
Nix

{ config, lib, pkgs, outputs, configLib, ... }:
{
imports = (configLib.scanPaths ./.)
++ (builtins.attrValues outputs.homeManagerModules);
home.packages = builtins.attrValues {
inherit (pkgs)
# Here go packages without my configs
#!Remember to comment without space after package
signal-desktop# there are also clis and other sw for interaction with signal on desktop
element-desktop# should be usable on wayland
}
}