aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/nixcord.nix
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-01-08 02:48:11 +0100
committerLeander Scherer <leander@schererleander.de>2026-01-08 19:08:12 +0100
commit6174f3650cf42aaf008012e828d5a1f8e2ce037f (patch)
tree9bbbd99680cd5adb56596a14734d4896bc6af733 /modules/programs/nixcord.nix
parentc582c4d0675aada46fa196b7af1941ed753d055f (diff)
refactor(modules): separate nixos/home-manager modules, use standard option conventions
Diffstat (limited to 'modules/programs/nixcord.nix')
-rw-r--r--modules/programs/nixcord.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/modules/programs/nixcord.nix b/modules/programs/nixcord.nix
deleted file mode 100644
index 191dcfb..0000000
--- a/modules/programs/nixcord.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{
- config,
- lib,
- inputs,
- username,
- ...
-}:
-
-{
- options.nx.programs.nixcord.enable = lib.mkEnableOption "Enable nixcord and setup";
- config = lib.mkIf config.nx.programs.nixcord.enable {
- home-manager.users.${username} = { ... }: {
- imports = [ inputs.nixcord.homeModules.nixcord ];
-
- programs.nixcord = {
- enable = true;
- config = {
- themeLinks = [
- "https://refact0r.github.io/system24/theme/system24.theme.css"
- ];
- frameless = true;
- plugins = {
- alwaysAnimate.enable = false;
- imageLink.enable = true;
- imageZoom.enable = true;
- translate.enable = true;
- };
- };
- };
- };
- };
-}