This commit is contained in:
Lyes Saadi 2024-08-12 12:31:56 +02:00
parent 264b8a4423
commit 1802e5c0f7
No known key found for this signature in database
GPG key ID: 17418538BAA17767
3 changed files with 25 additions and 23 deletions

View file

@ -5,8 +5,6 @@
./hardware-configuration.nix
];
# Trying to solve kernel panics
# boot.kernelPackages = pkgs.linuxPackages_6_1;
boot.kernelPackages = pkgs.linuxPackages_latest;
# Boot
@ -105,21 +103,21 @@
# services."nix-daemon".serviceConfig.MemoryMax = "20G";
# };
# # Disabling failing test
# nixpkgs.overlays = [ (final: prev: {
# Disabling failing test
nixpkgs.overlays = [ (final: prev: {
# orc = prev.orc.overrideAttrs (_: { doCheck = false; });
# gsl = prev.gsl.overrideAttrs (_: { doCheck = false; });
# fprintd = prev.fprintd.overrideAttrs (super: {
# # doCheck = false;
# # buildInputs = super.buildInputs or [ ] ++ (with pkgs; [ libpam-wrapper (pkgs.python3.withPackages (python-pkgs: [ python-pkgs.pycairo python-pkgs.dbus-python python-pkgs.python-dbusmock ])) ]);
# mesonCheckFlags = [
# # PAM related checks are timing out
# "--no-suite" "fprintd"
# ];
# });
fprintd = prev.fprintd.overrideAttrs (super: {
# doCheck = false;
# buildInputs = super.buildInputs or [ ] ++ (with pkgs; [ libpam-wrapper (pkgs.python3.withPackages (python-pkgs: [ python-pkgs.pycairo python-pkgs.dbus-python python-pkgs.python-dbusmock ])) ]);
mesonCheckFlags = [
# PAM related checks are timing out
"--no-suite" "fprintd"
];
});
# # haskellPackages.crypton = pkgs.haskell.lib.overrideCabal prev.crypton (_: { doCheck = false; });
# # haskellPackages.cryptonite = pkgs.haskell.lib.overrideCabal prev.cryptonite (_: { doCheck = false; });
# }) ];
}) ];
# nixpkgs.config.packageOverrides = pkgs: {
# haskellPackages = pkgs.haskellPackages.override {