nix-config/modules/default/common/options.nix
2024-12-29 17:43:23 +01:00

19 lines
355 B
Nix

{ lib, ... }:
{
options = {
desktop = {
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;
};
};
}