feat(nix): use lix-module

Initially using Lix 2.93.2 from lix-module to fix critical regression.
Will later switch to Lix from nixpkgs to benefit from the cache.
This commit is contained in:
Felix Schröter 2025-06-30 13:52:19 +02:00
parent 7610d86028
commit 77f0ba6d03
Signed by: felschr
GPG key ID: 671E39E6744C807D
3 changed files with 65 additions and 2 deletions
system

View file

@ -10,9 +10,13 @@ let
inherit (inputs.self.outputs) nixConfig;
in
{
nixpkgs.config.allowUnfree = true;
imports = [
# TODO switch to lixFromNixpkgs once 2.93.2 is available
inputs.lix-module.nixosModules.default
# inputs.lix-module.nixosModules.lixFromNixpkgs
];
nix.package = pkgs.lix;
nixpkgs.config.allowUnfree = true;
nix.gc = {
automatic = true;