aboutsummaryrefslogtreecommitdiff
path: root/modules/programs/nixcord.nix
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-06-14 23:53:22 +0200
committerLeander Scherer <leander@schererleander.de>2026-06-14 23:55:08 +0200
commitd461eff888927a190eeedee5df6716f68e42c9c2 (patch)
tree264fc3ef6ccb726447081b0f6496299af039ceb5 /modules/programs/nixcord.nix
parent9c59ec1d084282c5590a183b50e3dbfa0a3b3b83 (diff)
chore(programs): update and remove unused programs
Diffstat (limited to 'modules/programs/nixcord.nix')
-rw-r--r--modules/programs/nixcord.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/modules/programs/nixcord.nix b/modules/programs/nixcord.nix
deleted file mode 100644
index 9d3360b..0000000
--- a/modules/programs/nixcord.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{
- flake.modules.homeManager.nixcord =
- {
- inputs,
- ...
- }:
- {
- 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;
- };
- };
- };
- };
-}