mirror of
https://github.com/nix-community/home-manager
synced 2024-11-06 03:09:45 +01:00
13 lines
390 B
Nix
13 lines
390 B
Nix
|
self: super:
|
||
|
# Avoid unnecessary downloads in CI jobs and/or make out paths
|
||
|
# constant, i.e., not containing hashes, version numbers etc.
|
||
|
{
|
||
|
dmenu = super.dmenu // { outPath = "@dmenu@"; };
|
||
|
|
||
|
i3 = super.writeScriptBin "i3" "" // { outPath = "@i3@"; };
|
||
|
|
||
|
i3-gaps = super.writeScriptBin "i3" "" // { outPath = "@i3-gaps@"; };
|
||
|
|
||
|
i3status = super.i3status // { outPath = "@i3status@"; };
|
||
|
}
|