10 lines
256 B
Nix
10 lines
256 B
Nix
{pkgs, ...}: {
|
|
# Install some packages.
|
|
environment.systemPackages = with pkgs; [deploy-rs];
|
|
|
|
# Allow emulating aarch64 to build for Raspberry Pi.
|
|
boot.binfmt.emulatedSystems = ["aarch64-linux"];
|
|
|
|
# Enable docker.
|
|
flock.docker.enable = true;
|
|
}
|