added rio terminal
This commit is contained in:
parent
a911a95162
commit
76ce0b002f
2 changed files with 15 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
10
modules/home-manager/rio.nix
Normal file
10
modules/home-manager/rio.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue