nix-config/modules/default/common/options.nix
2024-12-27 15:08:02 +01:00

13 lines
226 B
Nix

{ lib, ... }:
{
options = {
desktop.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
server.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
};
}