init
This commit is contained in:
commit
f89801cd39
418 changed files with 1855 additions and 0 deletions
23
Modules/Applications/GUI-Apps/Desktop-Apps/office-apps.nix
Normal file
23
Modules/Applications/GUI-Apps/Desktop-Apps/office-apps.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config;
|
||||
|
||||
officeApps = with pkgs; [
|
||||
libreoffice
|
||||
thunderbird
|
||||
];
|
||||
in {
|
||||
options.officeApps.enable = mkEnableOption ''
|
||||
Enable office/document applications (e.g., LibreOffice, Thunderbird)
|
||||
'';
|
||||
|
||||
config = {
|
||||
home.packages =
|
||||
optionals cfg.officeApps.enable officeApps;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue