nix-config/modules/default/home-manager/desktop/options.nix
2024-12-27 22:21:25 +01:00

15 lines
305 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;
};
};
};
}