aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-25 16:55:55 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-07-25 16:55:55 +0200
commit0350164044b8e899772d81c2148df958af0eeddf (patch)
tree02b91baac5a53674d8f345b06ccb63bdeb24dbf9
parentmodules/boot: Try again with the commandline options extracted from the iso (diff)
downloadnixos-config-0350164044b8e899772d81c2148df958af0eeddf.zip
modules/calibre: Don't add calibre package to default closure
See the comment in the file for why.
-rw-r--r--modules/by-name/ca/calibre/module.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/by-name/ca/calibre/module.nix b/modules/by-name/ca/calibre/module.nix
index 6576a0ac..8bff421e 100644
--- a/modules/by-name/ca/calibre/module.nix
+++ b/modules/by-name/ca/calibre/module.nix
@@ -23,8 +23,13 @@ in {
soispha.impermanence.userDirectories = [
".config/calibre"
];
+
+ # Calibre depends on multiple “AI” slop stuff, which I don't really want to have in my
+ # closure.
+ # Considering, that calibre is probably also LLM friendly (and maybe contains
+ # vibe-coded stuff), I should probably replace it, but currently I'll keep it.
home-manager.users.soispha.programs.calibre = {
- enable = true;
+ enable = false;
};
};
}