aboutsummaryrefslogtreecommitdiff
path: root/kobo/clara/default.nix
diff options
context:
space:
mode:
authorChris Wells <chris@mathematicaster.org>2024-09-11 10:50:30 -0500
committerChris Wells <chris@mathematicaster.org>2024-09-11 10:50:30 -0500
commitc3052ddc4e54092bfc9220d550ab4d8fcba166de (patch)
tree836e2f11242afe8911e9eabd644c9a20ab668f3d /kobo/clara/default.nix
parent4f471484b3a1e16230979a8406503a220b9101f4 (diff)
downloadkobo-manager-c3052ddc4e54092bfc9220d550ab4d8fcba166de.tar
kobo-manager-c3052ddc4e54092bfc9220d550ab4d8fcba166de.tar.gz
kobo-manager-c3052ddc4e54092bfc9220d550ab4d8fcba166de.tar.bz2
kobo-manager-c3052ddc4e54092bfc9220d550ab4d8fcba166de.tar.lz
kobo-manager-c3052ddc4e54092bfc9220d550ab4d8fcba166de.tar.xz
kobo-manager-c3052ddc4e54092bfc9220d550ab4d8fcba166de.tar.zst
kobo-manager-c3052ddc4e54092bfc9220d550ab4d8fcba166de.zip
The modules seem fairly solid now. Now to write the cli
Diffstat (limited to 'kobo/clara/default.nix')
-rw-r--r--kobo/clara/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/kobo/clara/default.nix b/kobo/clara/default.nix
index b061c7f..0bb35d4 100644
--- a/kobo/clara/default.nix
+++ b/kobo/clara/default.nix
@@ -3,6 +3,9 @@ with builtins // lib;
{
device = {
name = "Kobo Clara HD";
+ serialNumber = "N249191243488";
+ affiliate = "kobo";
+ forceAffiliate = true;
};
firmware = {
@@ -34,10 +37,13 @@ with builtins // lib;
sleep-cover = true;
auto-suspend = 15.0;
auto-power-off = 4.0;
+ wifi = false;
+ auto-share = false;
time-format = "%I:%M%P";
reader = {
font-size = 10.0;
font-family = "Fira Math";
+ font-path = "fonts";
};
dictionary = {
font-size = 10.0;
@@ -47,6 +53,17 @@ with builtins // lib;
power-off = "${config.kobo.devicePath}/screensaver/main.png";
share = power-off;
};
+ libraries = [
+ {
+ name = "On Board";
+ path = "/mnt/onboard";
+ mode = "database";
+ sort-method = "progress";
+ first-column = "title-and-author";
+ second-column = "progress";
+ thumbnail-previews = true;
+ }
+ ];
};
};