helix back on git :)

This commit is contained in:
Tao Tien 2025-09-10 12:55:40 -07:00
parent 511bb35c30
commit 629ec6abcd
3 changed files with 52 additions and 8 deletions

43
flake.lock generated
View file

@ -165,6 +165,27 @@
"url": "https://flakehub.com/f/cachix/git-hooks.nix/0.1.941" "url": "https://flakehub.com/f/cachix/git-hooks.nix/0.1.941"
} }
}, },
"helix": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1757513370,
"narHash": "sha256-uaTDniIFWEv6PXs6s9wRFAcoumBaUZCiZ4hzlNWeJAE=",
"owner": "helix-editor",
"repo": "helix",
"rev": "209558645a0a00660e74b0e14e6ec0a0b1fac590",
"type": "github"
},
"original": {
"owner": "helix-editor",
"repo": "helix",
"type": "github"
}
},
"home-manager": { "home-manager": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -413,6 +434,7 @@
"agenix": "agenix", "agenix": "agenix",
"determinate": "determinate", "determinate": "determinate",
"disko": "disko", "disko": "disko",
"helix": "helix",
"home-manager": "home-manager_2", "home-manager": "home-manager_2",
"lsfg-vk-flake": "lsfg-vk-flake", "lsfg-vk-flake": "lsfg-vk-flake",
"nixos": "nixos", "nixos": "nixos",
@ -422,6 +444,27 @@
"zen-browser": "zen-browser" "zen-browser": "zen-browser"
} }
}, },
"rust-overlay": {
"inputs": {
"nixpkgs": [
"helix",
"nixpkgs"
]
},
"locked": {
"lastModified": 1740623427,
"narHash": "sha256-3SdPQrZoa4odlScFDUHd4CUPQ/R1gtH4Mq9u8CBiK8M=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "d342e8b5fd88421ff982f383c853f0fc78a847ab",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "rust-overlay",
"type": "github"
}
},
"systems": { "systems": {
"locked": { "locked": {
"lastModified": 1681028828, "lastModified": 1681028828,

View file

@ -19,10 +19,10 @@
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
# helix = { helix = {
# url = "github:mattwparas/helix/steel-event-system"; url = "github:helix-editor/helix";
# inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
# }; };
zen-browser = { zen-browser = {
url = "github:0xc000022070/zen-browser-flake"; url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -33,11 +33,11 @@
nixConfig = { nixConfig = {
extra-substituters = [ extra-substituters = [
# "https://helix.cachix.org/" "https://helix.cachix.org/"
"https://devenv.cachix.org" "https://devenv.cachix.org"
]; ];
extra-trusted-public-keys = [ extra-trusted-public-keys = [
# "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs=" "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=" "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
]; ];
}; };
@ -54,6 +54,7 @@
home-manager, home-manager,
zen-browser, zen-browser,
lsfg-vk-flake, lsfg-vk-flake,
helix,
... ...
} @ inputs: { } @ inputs: {
nixosConfigurations = { nixosConfigurations = {

View file

@ -1,4 +1,4 @@
{...}: { {inputs, pkgs, ...}: {
programs.helix = { programs.helix = {
settings = { settings = {
theme = "gruvbox_dark_hard"; theme = "gruvbox_dark_hard";
@ -262,6 +262,6 @@
}; };
enable = true; enable = true;
defaultEditor = true; defaultEditor = true;
# package = inputs.helix.packages.${pkgs.system}.default; package = inputs.helix.packages.${pkgs.system}.default;
}; };
} }