17 lines
227 B
Nix
17 lines
227 B
Nix
|
|
{
|
||
|
|
config,
|
||
|
|
pkgs,
|
||
|
|
...
|
||
|
|
}: {
|
||
|
|
programs.nixcord = {
|
||
|
|
enable = true;
|
||
|
|
config = {
|
||
|
|
frameless = true;
|
||
|
|
plugins = {
|
||
|
|
# TODO: remove this plugin
|
||
|
|
hideAttachments.enable = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|