flake: add code to build system from scratch

Won't use this everyday, but it's fun to try on a beefy Ryzen computer.
This commit is contained in:
Antoine Martin 2021-04-18 20:01:43 +02:00
parent 583bf276ac
commit d3b6cd9126

View file

@ -38,7 +38,16 @@
./boreal.nix ./boreal.nix
{ {
nixpkgs.overlays = [ emacs-overlay.overlay ]; nixpkgs.overlays = [
emacs-overlay.overlay
# uncomment this to build everything from scratch, fun but takes a
# while
#
# (self: super: {
# stdenv = super.impureUseNativeOptimizations super.stdenv;
# })
];
} }
]; ];
}; };