Added ground station software for hobby rc flying

This commit is contained in:
2025-09-04 21:21:12 -07:00
parent 692558b7b8
commit 1b45ef06f1
3 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
programs.qgroundcontrol.enable = true;
environment.systemPackages = with pkgs; [
mission-planner
];
}