nix-config/modules/nix/office/office.nix
smayzy 092579af98
All checks were successful
nix flake show / show-flake (push) Successful in 27s
format with nixfmt to nixpkgs standarts
2025-07-24 19:19:46 +02:00

24 lines
365 B
Nix

{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.office.enable = mkOption {
type = types.bool;
default = false;
description = "office";
};
config = mkIf config.smayzy.office.enable {
environment.systemPackages = with pkgs; [
libreoffice-qt6-still
hunspellDicts.fr-any
];
};
}