20 lines
303 B
Nix
20 lines
303 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
deploy-rs
|
|
docker
|
|
jq
|
|
];
|
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
|
|
# for vscode remote to work
|
|
programs.nix-ld = {
|
|
enable = true;
|
|
libraries = with pkgs; [
|
|
stdenv.cc.cc
|
|
];
|
|
};
|
|
}
|