mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Treewide] Rename cpuXxxx references to cpu.xxxx references
This commit is contained in:
parent
c4a7421ec6
commit
bc8978484f
7 changed files with 17 additions and 17 deletions
|
|
@ -100,8 +100,8 @@ in {
|
|||
optimizedAttrs = {}
|
||||
// {
|
||||
configureFlags = [
|
||||
"--with-cpu-64=${generalCfg.cpuArch}" "--with-arch-64=${generalCfg.cpuArch}"
|
||||
"--with-tune-64=${generalCfg.cpuTune}"
|
||||
"--with-cpu-64=${generalCfg.cpu.arch}" "--with-arch-64=${generalCfg.cpu.arch}"
|
||||
"--with-tune-64=${generalCfg.cpu.tune}"
|
||||
"--with-build-config=bootstrap-lto-lean"
|
||||
];
|
||||
}
|
||||
|
|
@ -123,7 +123,7 @@ in {
|
|||
recursive = 99;
|
||||
} super.nano;
|
||||
optipngOptimized = optimizePkg {
|
||||
parallelize = generalCfg.cores;
|
||||
parallelize = generalCfg.cpu.threads;
|
||||
} super.optipng;
|
||||
myFFmpeg = optimizePkg {
|
||||
lto = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue