nix-config/modules/default/home-manager/desktop/options.nix
2025-01-08 12:54:03 +01:00

26 lines
545 B
Nix

{ lib, config, ... }:
{
options = {
desktop = {
kitty.enable = lib.mkOption {
default = config.desktop.enable;
type = lib.types.bool;
};
vscodium.enable = lib.mkOption {
default = config.desktop.enable;
type = lib.types.bool;
};
wm = {
niri.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
river.enable = lib.mkOption {
default = false;
type = lib.types.bool;
};
};
};
};
}