mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49: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 = [ "armv7l-linux" ];
|
|
};
|
|
}
|