fix(catppuccin): use cache for themed ports

This commit is contained in:
Ryan Yin
2026-07-09 16:36:59 +08:00
parent 8d8cdab300
commit d5822550b4
4 changed files with 6 additions and 0 deletions
+2
View File
@@ -17,12 +17,14 @@
# substituers will be appended to the default substituters when fetching packages # substituers will be appended to the default substituters when fetching packages
extra-substituters = [ extra-substituters = [
"https://cache.numtide.com" "https://cache.numtide.com"
"https://catppuccin.cachix.org"
# "https://nix-gaming.cachix.org" # "https://nix-gaming.cachix.org"
# "https://nixpkgs-wayland.cachix.org" # "https://nixpkgs-wayland.cachix.org"
# "https://install.determinate.systems" # "https://install.determinate.systems"
]; ];
extra-trusted-public-keys = [ extra-trusted-public-keys = [
"niks3.numtide.com-1:DTx8wZduET09hRmMtKdQDxNNthLQETkc/yaX7M4qK0g=" "niks3.numtide.com-1:DTx8wZduET09hRmMtKdQDxNNthLQETkc/yaX7M4qK0g="
"catppuccin.cachix.org-1:noG/4HkbhJb+lUAdKrph6LaozJvAeEEZj4N732IysmU="
# "nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4=" # "nix-gaming.cachix.org-1:nbjlureqMbRAxR1gJ/f3hxemL9svXaZF/Ees8vCUUs4="
# "nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA=" # "nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA="
# "cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM=" # "cache.flakehub.com-3:hJuILl5sVK4iKm86JzgdXW12Y2Hwd5G07qKtHTOcDCM="
+1
View File
@@ -8,6 +8,7 @@
catppuccin = { catppuccin = {
# The default `enable` value for all available programs. # The default `enable` value for all available programs.
enable = true; enable = true;
cache.enable = true;
# one of "latte", "frappe", "macchiato", "mocha" # one of "latte", "frappe", "macchiato", "mocha"
flavor = "mocha"; flavor = "mocha";
# one of "blue", "flamingo", "green", "lavender", "maroon", "mauve", "peach", "pink", "red", "rosewater", "sapphire", "sky", "teal", "yellow" # one of "blue", "flamingo", "green", "lavender", "maroon", "mauve", "peach", "pink", "red", "rosewater", "sapphire", "sky", "teal", "yellow"
+1
View File
@@ -33,6 +33,7 @@
# screen locker # screen locker
programs.swaylock.enable = true; programs.swaylock.enable = true;
catppuccin.swaylock.enable = false;
# Logout Menu # Logout Menu
programs.wlogout.enable = true; programs.wlogout.enable = true;
+2
View File
@@ -29,12 +29,14 @@
"https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store" "https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store"
"https://nix-community.cachix.org" "https://nix-community.cachix.org"
"https://catppuccin.cachix.org"
# my own cache server, currently not used. # my own cache server, currently not used.
# "https://ryan4yin.cachix.org" # "https://ryan4yin.cachix.org"
]; ];
trusted-public-keys = [ trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"catppuccin.cachix.org-1:noG/4HkbhJb+lUAdKrph6LaozJvAeEEZj4N732IysmU="
"ryan4yin.cachix.org-1:Gbk27ZU5AYpGS9i3ssoLlwdvMIh0NxG0w8it/cv9kbU=" "ryan4yin.cachix.org-1:Gbk27ZU5AYpGS9i3ssoLlwdvMIh0NxG0w8it/cv9kbU="
]; ];
builders-use-substitutes = true; builders-use-substitutes = true;