CrOS/home/crow/common/optional/comms/default.nix
2025-10-31 08:51:52 -04:00

23 lines
444 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 = "sixel"
'';
home.packages = builtins.attrValues {
inherit (pkgs)
ferdium
discord
mattermost
slack
zoom
;
inherit (inputs.iamb-flake.packages.${pkgs.system})
default
;
};
}