nixosonsktrott WIP

This commit is contained in:
Daniel Olsen
2025-05-24 21:32:48 +02:00
parent c4a36607c0
commit e57fae4f6f
5 changed files with 73 additions and 16 deletions

View File

@@ -6,6 +6,23 @@
group = "dibbler";
};
};
services.dibbler.package = inputs.dibbler.packages.dibbler;
services.dibbler.config = config.sops.secrets."dibbler/config".path;
}
services.dibbler = {
enable = true;
package = inputs.dibbler.packages.dibbler;
settings = {
quit_allowed = false;
stop_allowed = false;
show_tracebacks = true;
input_encoding = "utf8";
low_credit_warning_limit = -100;
user_recent_transaction_limit = 20;
# See https://pypi.org/project/brother_ql/ for label types
# Set rotate to False for endless labels
label_type = "62";
label_rotate = false;
};
};
}