> evaluation warning: opdavies profile: Using relative paths in programs.zsh.dotDir is deprecated and will be removed in a future release. > Current dotDir: .config/zsh > Consider using absolute paths or home-manager config options instead. > You can replace relative paths or environment variables with options like: > - config.home.homeDirectory (user's home directory) > - config.xdg.configHome (XDG config directory) > - config.xdg.dataHome (XDG data directory) > - config.xdg.cacheHome (XDG cache directory)
This commit is contained in:
parent
3e7bf2721f
commit
d0f82c028e
1 changed files with 5 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
|||
{
|
||||
flake.modules.homeManager.base = {
|
||||
programs.zsh.dotDir = ".config/zsh";
|
||||
};
|
||||
flake.modules.homeManager.base =
|
||||
{ config, ... }:
|
||||
{
|
||||
programs.zsh.dotDir = "${config.xdg.configHome}/zsh";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue