mirror of
https://git.oat.zone/dark-firepit/dotfiles
synced 2024-11-23 02:12:26 +01:00
8 lines
162 B
Nix
8 lines
162 B
Nix
final: prev: {
|
|
wofi = (prev.wofi.override {
|
|
stdenv = prev.clang12Stdenv;
|
|
}).overrideAttrs (old: {
|
|
"NIX_CFLAGS_COMPILE" = "-Os -march=native";
|
|
});
|
|
}
|