diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-04 22:36:26 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-04 22:36:26 +0200 |
commit | f9821449c6d3d9a2826615c23e3768222a246bf5 (patch) | |
tree | 44f6e56ec5858c0fa7c94686d4dee402491742f4 /hm | |
parent | hyprland: correct path to wallpaper (diff) | |
download | nix-config-f9821449c6d3d9a2826615c23e3768222a246bf5.tar.gz nix-config-f9821449c6d3d9a2826615c23e3768222a246bf5.zip |
zsh: set WALLPAPER to correct path
Diffstat (limited to 'hm')
-rw-r--r-- | hm/zsh/default.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hm/zsh/default.nix b/hm/zsh/default.nix index ea47f7a..ed284b3 100644 --- a/hm/zsh/default.nix +++ b/hm/zsh/default.nix @@ -1,6 +1,7 @@ { config, pkgs, + self, ... }: { programs.zsh = { @@ -23,7 +24,7 @@ historySubstringSearch.enable = true; sessionVariables = { - WALLPAPER = "${config.home.homeDirectory}/srv/wallpaper.jpg"; + WALLPAPER = "${self}/files/wallpaper.jpg"; }; shellAliases = { |