From 24496c87b94f1ec2b23095be745b6a852e4ae1fd Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Tue, 3 Sep 2024 00:33:08 -0600 Subject: [PATCH] test to fix env variables --- modules/shell/tools.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/shell/tools.nix b/modules/shell/tools.nix index b064423..c5fff76 100644 --- a/modules/shell/tools.nix +++ b/modules/shell/tools.nix @@ -73,9 +73,9 @@ smartmontools # check hard drie health ]; environment.variables = { - HISTFILE = "\${XDG_STATE_HOME}/bash/history"; + HISTFILE = "$XDG_STATE_HOME/bash/history"; LESSHISTFILE = "-"; - RIPGREP_CONFIG_PATH = "\${XDG_CONFIG_HOME}/ripgrep/ripgreprc"; + RIPGREP_CONFIG_PATH = "$XDG_CONFIG_HOME/ripgrep/ripgreprc"; }; }; }