{ lib, pkgs, ... }: { options.programs = { terminal = lib.mkPackageOption pkgs "foot" {}; }; config = { programs.foot = { enable = true; }; }; }