From 28526185e44f28dd8847d0876d1af316601ebc22 Mon Sep 17 00:00:00 2001 From: steven carpenter Date: Wed, 25 Jun 2025 16:52:00 -0400 Subject: [PATCH] disabled rio enabled alacritty fixed initExtra deprication in zsh hm config --- modules/home-manager/home.nix | 8 ++++---- modules/home-manager/zsh.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/home-manager/home.nix b/modules/home-manager/home.nix index 3314f55..e6e3abc 100644 --- a/modules/home-manager/home.nix +++ b/modules/home-manager/home.nix @@ -13,7 +13,7 @@ ./zoxide.nix ./zsh.nix ]; - speccon18.hm.alacritty.enable = false; + speccon18.hm.alacritty.enable = true; speccon18.hm.direnv.enable = true; speccon18.hm.git.enable = true; speccon18.hm.ncspot.enable = false; @@ -23,7 +23,7 @@ speccon18.hm.zellij.enable = false; speccon18.hm.zoxide.enable = false; speccon18.hm.zsh.enable = true; - speccon18.hm.rio.enable = true; + speccon18.hm.rio.enable = false; # Home Manager needs a bit of information about you and the paths it should # manage. @@ -47,8 +47,8 @@ gimp vlc atuin - rio - imgcat + #rio + #imgcat # # Adds the 'hello' command to your environment. It prints a friendly # # "Hello, world!" when run. diff --git a/modules/home-manager/zsh.nix b/modules/home-manager/zsh.nix index b460940..a2c9233 100644 --- a/modules/home-manager/zsh.nix +++ b/modules/home-manager/zsh.nix @@ -28,7 +28,7 @@ }; # This adds the atuin init line to your Zsh config - initExtra = '' + initContent = '' eval "$(atuin init zsh)" ''; };