Compare commits

..

No commits in common. "dcd3e742f81e43d5862f71b28e430103b8064e28" and "757d8f9ace3a9922dedbe3f130eb9721e6212691" have entirely different histories.

View file

@ -1,4 +1,4 @@
{ nixpkgs, options, ... }:
{ nixpkgs, ... }:
{
home.shellAliases = {
# From Nix environment
@ -7,6 +7,7 @@
"termbin" = "nc termbin.com 9999";
# Alias that lets me upload text to https://termbin.com/
# Mainly so I can lazily upload build logs.
} // nixpkgs.lib.optionalAttrs (nixpkgs.lib.options ? wsl) {
# From Windows "%PATH%"
"adb" = "adb.exe";
"caja" = "explorer.exe";
@ -16,5 +17,4 @@
"yt-dlp" = "yt-dlp.exe";
"7zexe" = "/mnt/c/Program\\ Files/7-Zip/7z.exe";
};
# } // nixpkgs.lib.optionalAttrs (options ? wsl) {
}