Nixos Build Issues
So I am doing a rebuild of my NixOS laptop in order to (supposedly) highly optimize the resulting binary code for my local host. Or, at least, all of the libraries written in C. So doing this was pretty straightforward. Before we can build the optimized code, we need to tell Nix that our system supports this as a feature. So the first thing I enabled in my configuration is:
nix.settings.system-features = [ "gccarch-x86-64-v3" ];
A quick nixos-rebuild switch
has me up and going in a few moments, as all it needs to do is
write a new nix.conf
file.