added rio terminal

This commit is contained in:
steven carpenter 2025-06-25 02:58:42 -04:00
parent a911a95162
commit 76ce0b002f
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,10 @@
{ config, lib, pkgs,... }:
{
options.speccon18.hm.rio.enable = lib.mkEnableOption "Enable Rio Term";
config = lib.mkIf config.speccon18.hm.rio.enable {
programs.rio= {
enable = true;
};
};
}