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

@ -2,6 +2,7 @@
{
imports = [
./alacritty.nix
./rio.nix
./direnv.nix
./git.nix
./ncspot.nix
@ -22,7 +23,8 @@
speccon18.hm.zellij.enable = false;
speccon18.hm.zoxide.enable = false;
speccon18.hm.zsh.enable = true;
speccon18.hm.rio.enable = true;
# Home Manager needs a bit of information about you and the paths it should
# manage.
home = {
@ -45,6 +47,8 @@
gimp
vlc
atuin
rio
# # Adds the 'hello' command to your environment. It prints a friendly
# # "Hello, world!" when run.
# pkgs.hello

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;
};
};
}