So many changes dude, mostly gptel and libreoffice

This commit is contained in:
2026-01-12 22:52:20 +02:00
parent 1ab061fb90
commit 8d3c708b6c
9 changed files with 66 additions and 6 deletions
+22
View File
@@ -0,0 +1,22 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.printing.enable;
in {
options.azos.printing.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
services.printing.enable = true;
home.packages = with pkgs; [
hplip
];
};
}