1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-25 02:10:57 +01:00

tests/antidote: remove deprecated relative path usage

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-07-28 10:24:00 -05:00
parent 471eeaa975
commit a1b7e7f510

View file

@ -1,10 +1,12 @@
{ config, ... }:
let
relToDotDirCustom = ".zshplugins";
dotDirCustom = "${config.home.homeDirectory}/.config/zsh";
relToDotDirCustom = ".config/zsh";
in
{
programs.zsh = {
enable = true;
dotDir = relToDotDirCustom;
dotDir = dotDirCustom;
antidote = {
enable = true;
useFriendlyNames = true;