rose-pine-nix/modules/nixos/globals.nix
Pol Dellaiera e45a44e26e
feat(modules): add global enable option (#124)
* feat: add `enable` option globally

* chore(modules): use catppuccin.enable in test.nix

---------

Co-authored-by: seth <getchoo@tuta.io>
2024-04-22 13:39:12 -04:00

11 lines
256 B
Nix

{ lib, ... }: {
options.catppuccin = {
enable = lib.mkEnableOption "Catppuccin globally";
flavour = lib.mkOption {
type = lib.ctp.types.flavourOption;
default = "latte";
description = "Global Catppuccin flavour";
};
};
}