diff --git a/modules/home-manager/home.nix b/modules/home-manager/home.nix index 62408ce..5bc5900 100644 --- a/modules/home-manager/home.nix +++ b/modules/home-manager/home.nix @@ -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 diff --git a/modules/home-manager/rio.nix b/modules/home-manager/rio.nix new file mode 100644 index 0000000..adc05b2 --- /dev/null +++ b/modules/home-manager/rio.nix @@ -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; + }; + }; +}