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