flake, nix: Use Lix from nixpkgs

This commit is contained in:
Katherina Walshe-Grey 2025-09-02 00:49:58 +01:00
parent 3d5278e32b
commit 3cdfe214f2
3 changed files with 14 additions and 108 deletions

View file

@ -9,4 +9,16 @@
};
nixpkgs.config.allowUnfree = true;
nix.settings.trusted-users = [ "@wheel" ];
nix.package = pkgs.lixPackageSets.stable.lix;
nixpkgs.overlays = [
(final: prev: {
inherit (final.lixPackageSets.stable)
nixpkgs-review
nix-direnv
nix-eval-jobs
nix-fast-build
colmena;
})
];
}