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
+21
View File
@@ -0,0 +1,21 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.libreoffice.enable;
in {
options.azos.libreoffice.enable = lib.mkOption {
default = true;
example = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
libreoffice
];
};
}