Skip to content

Commit

Permalink
feat: add helix input to build from source, update lock
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnossiom committed Aug 1, 2024
1 parent e183f91 commit 3005f6f
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 35 deletions.
169 changes: 136 additions & 33 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
git-leave.url = "github:mrnossiom/git-leave";
git-leave.inputs.nixpkgs.follows = "nixpkgs";

helix.url = "github:helix-editor/helix";
helix.inputs.nixpkgs.follows = "nixpkgs";

radicle.url = "git+https://seed.radicle.xyz/z3gqcJUoA1n9HaHKufZs5FCSGazv5";
radicle.inputs.nixpkgs.follows = "nixpkgs";

Expand Down
2 changes: 1 addition & 1 deletion home-manager/modules/helix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ in
config = {
programs.helix = {
enable = true;
package = upkgs.helix;
package = pkgs.helix;
defaultEditor = true;

settings = {
Expand Down
3 changes: 2 additions & 1 deletion pkgs/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ self, system, ... }@pkgs:

let
inherit (self.inputs) agenix git-leave radicle wakatime-lsp;
inherit (self.inputs) agenix git-leave helix radicle wakatime-lsp;
in
{
arduino-udev-rules = pkgs.callPackage ./arduino-udev-rules.nix { };
Expand All @@ -17,6 +17,7 @@ in
# Import packages defined in foreign repositories
inherit (agenix.packages.${system}) agenix;
inherit (git-leave.packages.${system}) git-leave;
inherit (helix.packages.${system}) helix;
inherit (radicle.packages.${system}) radicle;
inherit (wakatime-lsp.packages.${system}) wakatime-lsp;
}

0 comments on commit 3005f6f

Please sign in to comment.