Re-add cache
This commit is contained in:
parent
12e6f87d1b
commit
2563ecbfed
15
flake.nix
15
flake.nix
|
@ -210,8 +210,19 @@
|
|||
};
|
||||
};
|
||||
|
||||
modifications = final: prev: {
|
||||
final.helix = helix.outputs.packages.${prev.system}.helix;
|
||||
modifications = final: prev: rec {
|
||||
helix = helix.outputs.packages.${prev.system}.helix;
|
||||
final.helix = helix;
|
||||
wezterm = prev.wezterm.overrideAttrs rec {
|
||||
version = "56a27e93a9ee50aab50ff4d78308f9b3154b5122";
|
||||
src = prev.fetchFromGitHub {
|
||||
owner = "wez";
|
||||
repo = "wezterm";
|
||||
rev = version;
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-zl0Me24ncrpXUCvkQHlbgUucf0zrkhFFI242wsSQKLw=";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
unstable-packages = final: _prev: {
|
||||
|
|
|
@ -250,7 +250,7 @@
|
|||
"https://cache.nixos.org/"
|
||||
"https://helix.cachix.org"
|
||||
"https://nix-community.cachix.org"
|
||||
# "https://nix.h.lyte.dev"
|
||||
"https://nix.h.lyte.dev"
|
||||
"https://hyprland.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
|
|
Loading…
Reference in a new issue