nix-config/modules/default/common/options.nix
2025-01-04 00:36:34 +01:00

27 lines
464 B
Nix

{ lib, ... }:
{
options = {
desktop = {
enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
emulation.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
windowManager = lib.mkOption {
default = "Hyprland";
type = lib.types.str;
};
};
server.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
};
}