CrOS/home/crow/common/optional/comms/default.nix
2025-12-01 09:36:32 -05:00

23 lines
471 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.stdenv.hostPlatform.system})
default
;
};
}