2025-01-05 03:15:23 +05:30
|
|
|
# This file seems like generic nix config options could be moved to common in future
|
|
|
|
|
{
|
|
|
|
|
pkgs,
|
|
|
|
|
lib,
|
|
|
|
|
system,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
|
|
|
|
|
|
# Cross-compile GNU/Linux binaries, or even full GNU/Linux system images
|
2025-01-10 22:47:01 +05:30
|
|
|
nix.linux-builder.enable = true;
|
2025-01-05 03:15:23 +05:30
|
|
|
|
|
|
|
|
nix.settings.experimental-features = "nix-command flakes";
|
|
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = "${system}";
|
|
|
|
|
}
|