fruitbasket/modules/options.nix

8 lines
206 B
Nix
Raw Normal View History

2022-09-06 17:16:31 +02:00
{ config, lib, ... }: with lib; {
2022-04-19 16:39:09 +02:00
options.fsr.enable_office_bloat = mkOption {
type = types.bool;
default = false;
description = "install heavy office bloat like texlive, okular, ...";
};
}