refactor: remove nvtop, update kernelPackages, and add nixpkgs overlay
Check NixOS Config / build (push) Failing after 7s

This commit is contained in:
2026-05-31 22:52:33 +03:00
parent 6755d28c8f
commit 909b8756e6
3 changed files with 27 additions and 17 deletions
+12 -1
View File
@@ -12,6 +12,17 @@
./gaming.nix
];
nixpkgs.overlays = [
(final: prev: {
pkgsi686Linux = prev.pkgsi686Linux.extend (final': prev': {
openldap = prev'.openldap.overrideAttrs (_old: {
doCheck = false;
doInstallCheck = false;
});
});
})
];
nix = {
settings.experimental-features = [ "nix-command" "flakes" ];
gc = {
@@ -23,7 +34,7 @@
};
boot = {
kernelPackages = pkgs.linuxPackages_zen;
kernelPackages = pkgs.linuxPackages;
loader = {
efi.canTouchEfiVariables = true;
systemd-boot.enable = false;