diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-06-21 19:03:43 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-06-21 19:03:43 +0200 |
| commit | b60cc8c5dbbfc29d01cc8c40c04c8ae6f9f6570e (patch) | |
| tree | eeb850dc71af61e4ede7eeac9e3cc50037a59044 | |
| parent | fb08ae4164d3721812143db831abd8e0db72ffc8 (diff) | |
Added a discord module
| -rw-r--r-- | modules/features/discord.nix | 15 |
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; + }; + }; +} |
