move stuff into nixosModules

This commit is contained in:
Vinzenz Schroeter 2025-09-13 14:05:04 +02:00
parent 7524f74f76
commit a63f1c69c7
4 changed files with 54 additions and 42 deletions

15
nixosModules/lix.nix Normal file
View file

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