3fdc011242
* chore(modules): add tests for home-manager on darwin * ci: use nix-fast-build for tests this also enables the new darwin tests * chore(tests): disable unsupported modules on darwin * docs: add `tests` scope to CONTRIBUTING.md * fix(home-manager): exclude `gtk.catppuccin.icon` from global enable this was accidentally enabled by default only with `catppuccin.enable` * fix(tests): build activationPackage for darwin
16 lines
452 B
Nix
16 lines
452 B
Nix
{ pkgs, ... }:
|
|
{
|
|
catppuccin = {
|
|
enable = true;
|
|
sources = {
|
|
# this is used to ensure that we are able to apply
|
|
# source overrides without breaking the other sources
|
|
palette = pkgs.fetchFromGitHub {
|
|
owner = "catppuccin";
|
|
repo = "palette";
|
|
rev = "16726028c518b0b94841de57cf51f14c095d43d8"; # refs/tags/1.1.1~1
|
|
hash = "sha256-qZjMlZFTzJotOYjURRQMsiOdR2XGGba8XzXwx4+v9tk=";
|
|
};
|
|
};
|
|
};
|
|
}
|