We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63290ea commit c7fe0ddCopy full SHA for c7fe0dd
docs/src/getting-started/stable-nix.md
@@ -91,4 +91,3 @@ or if you use a [standalone installation](https://nix-community.github.io/home-m
91
}
92
93
```
94
-
modules/global.nix
@@ -45,5 +45,14 @@ in
45
apply = lib.recursiveUpdate defaultSources;
46
description = "Port sources used across all options";
47
};
48
+
49
+ cache.enable = lib.mkEnableOption "Enable Catppuccin cache";
50
+ };
51
52
+ config = {
53
+ nix.settings = lib.mkIf config.catppuccin.cache.enable {
54
+ substituters = [ "https://catppuccin.cachix.org" ];
55
+ trusted-public-keys = [ "catppuccin.cachix.org-1:noG/4HkbhJb+lUAdKrph6LaozJvAeEEZj4N732IysmU=" ];
56
57
58
0 commit comments