Rename mkTarget's 'configElements' argument to 'config' and 'extraOptions' to 'options' to provide a more transparent interface with the underlying Nixpkgs module system.
13 lines
225 B
Nix
13 lines
225 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "fish";
|
|
humanName = "Fish";
|
|
|
|
config =
|
|
{ colors, inputs }:
|
|
{
|
|
programs.fish.interactiveShellInit = import ./prompt.nix {
|
|
inherit colors inputs;
|
|
};
|
|
};
|
|
}
|