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:
parent
471eeaa975
commit
a1b7e7f510
1 changed files with 4 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue