mirror of
https://github.com/willemml/dotfiles.nix.git
synced 2025-04-12 19:27:17 +00:00
12 lines
183 B
Nix
12 lines
183 B
Nix
{
|
|
writeShellApplication,
|
|
cachix,
|
|
stdenv,
|
|
}:
|
|
writeShellApplication {
|
|
name = "cachix";
|
|
runtimeInputs = [cachix];
|
|
text = ''
|
|
exec cachix -d ./cachix -m nixos "$@"
|
|
'';
|
|
}
|