Run nixpkgs-fmt

This commit is contained in:
Sridhar Ratnakumar 2023-06-12 16:41:22 -04:00
parent 0d8b40edfa
commit 4b117924f4
5 changed files with 16 additions and 16 deletions

View File

@ -2,7 +2,7 @@
outputs = _: {
flakeModule = ./nix/flake-module.nix;
templates.default = {
templates.default = {
description = "Example flake using process-compose-flake";
path = builtins.path { path = ./example; filter = path: _: baseNameOf path == "flake.nix"; };
};

View File

@ -5,8 +5,8 @@ lib.mkOption (args // {
type = lib.types.either lib.types.package lib.types.str;
apply = pkg:
if builtins.isString pkg
# process-compose is unreliable in handling environment variable, so let's
# wrap it in a bash script.
then lib.getExe (pkgs.writeShellApplication { inherit name; text = pkg; })
else lib.getExe pkg;
# process-compose is unreliable in handling environment variable, so let's
# wrap it in a bash script.
then lib.getExe (pkgs.writeShellApplication { inherit name; text = pkg; })
else lib.getExe pkg;
})

View File

@ -8,7 +8,7 @@ lib.mkOption {
nullOr
(either (listOf str) (attrsOf str));
default = null;
example = { ABC="2221"; PRINT_ERR="111"; };
example = { ABC = "2221"; PRINT_ERR = "111"; };
description = ''
Attrset of environment variables.