CrOS/home/crow/common/optional/comms/default.nix
2025-11-02 15:16:16 +00:00

23 lines
451 B
Nix

{ inputs, pkgs, ... }:
{
home.file.".config/iamb/config.toml".text = ''
[profiles.crow]
user_id = "@crow:psychal.link"
[profiles.crow.settings]
open_command = ["librewolf"]
image_preview.type = "sixel"
'';
home.packages = builtins.attrValues {
inherit (pkgs)
ferdium
discord
mattermost
slack
zoom
;
inherit (inputs.iamb-flake.packages.${pkgs.system})
default
;
};
}