8 lines
206 B
Nix
8 lines
206 B
Nix
{ config, lib, ... }: with lib; {
|
|
options.fsr.enable_office_bloat = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = "install heavy office bloat like texlive, okular, ...";
|
|
};
|
|
}
|