mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-08 19:51:14 +00:00
11 lines
188 B
Nix
11 lines
188 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
programs.qgroundcontrol.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
betaflight-configurator
|
|
inav-configurator
|
|
mission-planner
|
|
];
|
|
}
|