working helix module

This commit is contained in:
Charlie Root 2024-11-06 00:11:11 +01:00
commit 0f337213dc
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
4 changed files with 68 additions and 45 deletions

View file

@ -1,7 +1,11 @@
{pkgs, ...}: rec {
{
inputs,
pkgs,
...
}: rec {
packages = {
fish = pkgs.callPackage ./shell {};
# helix = pkgs.callPackge ./helix {};
helix = pkgs.callPackage ./helix {inherit (inputs.helix.packages.${pkgs.stdenv.system}) helix;};
kakoune = pkgs.callPackage ./kakoune {};
};
shell = pkgs.mkShell {
@ -10,8 +14,9 @@
};
module = {
config = {
environment.systemPackages = [
shell
environment.systemPackages = with packages; [
fish
helix
];
};
};