mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
9 lines
248 B
Nix
9 lines
248 B
Nix
{ config, ... }: {
|
|
nix = {
|
|
binaryCaches = [ "https://arm.cachix.org/" ];
|
|
binaryCachePublicKeys = [ "arm.cachix.org-1:5BZ2kjoL1q6nWhlnrbAl+G7ThY7+HaBRD9PZzqZkbnM=" ];
|
|
};
|
|
boot.binfmt = {
|
|
emulatedSystems = [ "armv7l-linux" ];
|
|
};
|
|
}
|