mirror of
https://github.com/RGBCube/ncc
synced 2025-07-28 18:47:44 +00:00
helix: use helix master
This commit is contained in:
parent
b6f230ddf9
commit
7f76a36eb2
1 changed files with 30 additions and 13 deletions
|
@ -6,20 +6,37 @@ in {
|
||||||
shellAliases.x = "hx";
|
shellAliases.x = "hx";
|
||||||
};
|
};
|
||||||
|
|
||||||
# nixpkgs.overlays = [(self: super: {
|
nixpkgs.overlays = [(self: super: {
|
||||||
# helix = super.helix.overrideAttrs (old: {
|
# CullOS Helix with Cab support:
|
||||||
# src = self.fetchzip {
|
# helix = super.helix.overrideAttrs (old: {
|
||||||
# url = "https://github.com/cull-os/helix/releases/download/ci-release-25.01.1/helix-ci-release-25.01.1-source.tar.xz";
|
# src = self.fetchzip {
|
||||||
# hash = "sha256-bvlzXRAdPvz8P49KENSw9gupQNaUm/+3eZZ1q7+fTsw=";
|
# url = "https://github.com/cull-os/helix/releases/download/ci-release-25.01.1/helix-ci-release-25.01.1-source.tar.xz";
|
||||||
# stripRoot = false;
|
# hash = "sha256-bvlzXRAdPvz8P49KENSw9gupQNaUm/+3eZZ1q7+fTsw=";
|
||||||
# };
|
# stripRoot = false;
|
||||||
|
# };
|
||||||
|
|
||||||
# cargoDeps = self.rustPlatform.fetchCargoVendor {
|
# cargoDeps = self.rustPlatform.fetchCargoVendor {
|
||||||
# inherit (self.helix) src;
|
# inherit (self.helix) src;
|
||||||
# hash = "sha256-soOnSRvWO7OzxYENFUBGmgSAk1Oy9Av+wDDLKkcuIbs=";
|
# hash = "sha256-soOnSRvWO7OzxYENFUBGmgSAk1Oy9Av+wDDLKkcuIbs=";
|
||||||
# };
|
# };
|
||||||
# });
|
# });
|
||||||
# })];
|
|
||||||
|
helix = super.helix.overrideAttrs (finalAttrs: _previousAttrs: {
|
||||||
|
version = "25.07.2";
|
||||||
|
src = self.fetchzip {
|
||||||
|
url = "https://github.com/bloxx12/helix/releases/download/${finalAttrs.version}/helix-${finalAttrs.version}-source.tar.xz";
|
||||||
|
hash = "sha256-ZNsQwFfPXe6oewajx1tl68W60kVo7q2SuvTgy/o1HKk=";
|
||||||
|
stripRoot = false;
|
||||||
|
};
|
||||||
|
|
||||||
|
doInstallCheck = false;
|
||||||
|
|
||||||
|
cargoDeps = self.rustPlatform.fetchCargoVendor {
|
||||||
|
inherit (self.helix) src;
|
||||||
|
hash = "sha256-3poZSvIrkx8lguxxDeNfngW6+4hH8TV/LHcZx5W5aXg=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
})];
|
||||||
|
|
||||||
home-manager.sharedModules = [{
|
home-manager.sharedModules = [{
|
||||||
programs.nushell.configFile.text = mkIf /*(*/config.isDesktop/* && config.isLinux)*/ <| mkAfter /* nu */ ''
|
programs.nushell.configFile.text = mkIf /*(*/config.isDesktop/* && config.isLinux)*/ <| mkAfter /* nu */ ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue