There is nothing in this commit except for the changes made by nix-shell -p nixfmt-rfc-style --run "nixfmt ." If this has mucked up your open branches then sorry about that. You can probably nixfmt them to match before merging
20 lines
422 B
Nix
20 lines
422 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
config = {
|
|
programs.busybox = {
|
|
options = {
|
|
# schnapps is a shell script that needs
|
|
# [ command
|
|
# find -maxdepth -mindepth
|
|
# head -c
|
|
# echo -n
|
|
ASH_TEST = "y";
|
|
FEATURE_FIND_MAXDEPTH = "y";
|
|
FEATURE_FANCY_HEAD = "y";
|
|
FEATURE_FANCY_ECHO = "y";
|
|
};
|
|
};
|
|
defaultProfile.packages = [ pkgs.schnapps ];
|
|
};
|
|
}
|