Adding helix extension support

This commit is contained in:
Lyes Saadi 2026-04-03 16:32:10 +02:00
parent b457b9973d
commit 6036ca99b2
Signed by: lyes
GPG key ID: 55A1D803917CF39A
4 changed files with 106 additions and 109 deletions

View file

@ -1,4 +1,4 @@
{ nixpkgs-unstable, nixpkgs-stable, pin-factorio, ... }:
{ nixpkgs-unstable, nixpkgs-stable, pin-factorio, helix-ext, ... }:
{
imports =
@ -7,8 +7,8 @@
./system.nix
];
# Import local packages
nixpkgs.overlays = [
# Import local packages
(final: prev: {
local = import ../../pkgs { pkgs = final; };
})
@ -33,6 +33,11 @@
factorio = import pin-factorio { system = final.stdenv.hostPlatform.system; config.allowUnfree = true; };
};
})
# Helix
(final: prev: {
helix-with-extensions = helix-ext.packages."x86_64-linux".helix;
})
];
nixpkgs.config = {