dotfiles/modules/discord/nixcord.nix

30 lines
303 B
Nix
Raw Normal View History

2024-11-04 11:59:14 +10:00
{
lib,
pkgs,
config,
inputs,
outputs,
...
}:
{
imports = [
inputs.nixcord.homeManagerModules.nixcord
];
programs.nixcord = {
enable = true;
config = {
themeLinks = [
""
];
# no surrounding window frame
frameless = true;
plugins = {
};
};
};
}