tvl-depot/users/Profpatsch/xdg-cache-home.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
194 B
Nix
Raw Normal View History

{ depot, pkgs, lib, ... }:
depot.nix.writeExecline "xdg-cache-home" { } [
"if"
"-n"
[
"printenv"
"XDG_CACHE_HOME"
]
"importas"
"HOME"
"HOME"
"echo"
"\${HOME}/.cache"
]