mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
9 lines
255 B
Nix
9 lines
255 B
Nix
{ config, ... }: {
|
|
nix.settings = {
|
|
substituters = [ "https://arm.cachix.org/" ];
|
|
trusted-public-keys = [ "arm.cachix.org-1:5BZ2kjoL1q6nWhlnrbAl+G7ThY7+HaBRD9PZzqZkbnM=" ];
|
|
};
|
|
boot.binfmt = {
|
|
emulatedSystems = [ "armv6l-linux" ];
|
|
};
|
|
}
|