12 lines
171 B
Nix
12 lines
171 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
deploy-rs
|
|
docker
|
|
jq
|
|
];
|
|
|
|
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
}
|