All checks were successful
/ check (push) Successful in 1m47s
> 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)
7 lines
133 B
Nix
7 lines
133 B
Nix
{
|
|
flake.modules.homeManager.base =
|
|
{ config, ... }:
|
|
{
|
|
programs.zsh.dotDir = "${config.xdg.configHome}/zsh";
|
|
};
|
|
}
|