feat(helix): initial helix config

will work on this later
This commit is contained in:
jacekpoz 2023-08-13 09:41:19 +02:00
parent c0419798a3
commit 19e68dcf67
4 changed files with 19 additions and 0 deletions

View file

@ -62,5 +62,7 @@
};
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
helix.url = "github:helix-editor/helix";
};
}

View file

@ -1,6 +1,7 @@
_: {
imports = [
./btop.nix
./helix.nix
./neovim
];
}

14
homes/jacek/tui/helix.nix Normal file
View file

@ -0,0 +1,14 @@
{
config,
inputs,
pkgs,
...
}: {
programs.helix = {
enable = true;
package = inputs.helix.packages.${pkgs.system}.helix;
settings = {
};
};
}

View file

@ -43,6 +43,7 @@
"https://anyrun.cachix.org"
"https://nix-community.cachix.org"
"https://nixpkgs-wayland.cachix.org"
"https://helix.cachix.org"
];
trusted-public-keys = [
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
@ -50,6 +51,7 @@
"anyrun.cachix.org-1:pqBobmOjI7nKlsUMV25u9QHa9btJK65/C8vnO3p346s="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixpkgs-wayland.cachix.org-1:3lwxaILxMRkVhehr5StQprHdEo4IrE8sRho9R9HOLYA="
"helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
];
keep-outputs = true;
keep-derivations = true;