]> Git — Sourcephile - sourcephile-nix.git/blob - nixos/profiles/systems/crossCompilation.nix
carotte: cross-compile more the graphical profile
[sourcephile-nix.git] / nixos / profiles / systems / crossCompilation.nix
1 {
2 nixpkgs.overlays = [
3 (finalPkgs: previousPkgs: {
4 # libx86emu-armv7l-unknown-linux-gnueabihf> /nix/store/r9h133c9m8f6jnlsqzwf89zg9w0w78s8-bash-5.2-p15/bin/bash: line 1: gcc: command not found
5 hwinfo = finalPkgs.hello;
6 # x11-ssh-askpass-armv7l-unknown-linux-gnueabihf> /build/imakeUMfSVM: line 1: syntax error: unexpected word (expecting ")")
7 x11_ssh_askpass = finalPkgs.hello;
8 })
9 ];
10 security.apparmor.enable = false;
11 }