new lix installation method

This commit is contained in:
Vinzenz Schroeter 2025-09-13 01:18:18 +02:00
parent 506aed82ff
commit c858ac5d4c
3 changed files with 14 additions and 95 deletions

12
modules/lix.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
nixpkgs.overlays = [ (final: prev: {
inherit (prev.lixPackageSets.stable)
nixpkgs-review
nix-eval-jobs
nix-fast-build
colmena;
}) ];
nix.package = pkgs.lixPackageSets.stable.lix;
}