begun making my home-manager config modular

This commit is contained in:
do butterflies cry? 2024-11-10 23:10:51 +10:00
parent b4216b3595
commit b03961b3dc
23 changed files with 1586 additions and 947 deletions

16
homes/modules/nixcord.nix Normal file
View file

@ -0,0 +1,16 @@
{
config,
pkgs,
...
}: {
programs.nixcord = {
enable = true;
config = {
frameless = true;
plugins = {
# TODO: remove this plugin
hideAttachments.enable = true;
};
};
};
}