Re-add cache
This commit is contained in:
parent
12e6f87d1b
commit
2563ecbfed
2 changed files with 14 additions and 3 deletions
15
flake.nix
15
flake.nix
|
@ -210,8 +210,19 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
modifications = final: prev: {
|
modifications = final: prev: rec {
|
||||||
final.helix = helix.outputs.packages.${prev.system}.helix;
|
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: {
|
unstable-packages = final: _prev: {
|
||||||
|
|
|
@ -250,7 +250,7 @@
|
||||||
"https://cache.nixos.org/"
|
"https://cache.nixos.org/"
|
||||||
"https://helix.cachix.org"
|
"https://helix.cachix.org"
|
||||||
"https://nix-community.cachix.org"
|
"https://nix-community.cachix.org"
|
||||||
# "https://nix.h.lyte.dev"
|
"https://nix.h.lyte.dev"
|
||||||
"https://hyprland.cachix.org"
|
"https://hyprland.cachix.org"
|
||||||
];
|
];
|
||||||
trusted-public-keys = [
|
trusted-public-keys = [
|
||||||
|
|
Loading…
Reference in a new issue