[Optimizations] Remove explicit mtune from extra compile flags

Now handled in lib/optimizations.nix with cpuTune arg
This commit is contained in:
Antoine Viallon 2023-05-11 19:13:22 +02:00
parent 29b799da7c
commit 099e2949de
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -43,7 +43,7 @@ in {
};
};
extraCompileFlags = mkOption {
default = [ "-mtune=${generalCfg.cpuTune}" ];
default = [ ];
example = [ "-O2" "-mavx" ];
description = "Add specific compile flags";
type = types.listOf types.str;