mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 01:24:05 -05:00
23 lines
471 B
Nix
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
|
|
;
|
|
};
|
|
}
|