summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/features/discord.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/features/discord.nix b/modules/features/discord.nix
new file mode 100644
index 0000000..3acf00a
--- /dev/null
+++ b/modules/features/discord.nix
@@ -0,0 +1,15 @@
+{
+ self,
+ inputs,
+ ...
+}: {
+ flake.nixosModules.discord = {inputs, ...}: {
+ imports = [
+ inputs.nixcord.homeModules.nixcord
+ ];
+ programs.nixcord = {
+ enable = true;
+ discord.vencord.enable = true;
+ };
+ };
+}