dotfiles/modules/discord/nixcord.nix

30 lines
306 B
Nix
Raw Normal View History

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