tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
nixos: systemd.services.*.environment: fix type
Jan Malakhovski
7 years ago
fb2a8d66
44d612d6
+1
-1
1 changed file
expand all
collapse all
unified
split
nixos
modules
system
boot
systemd-unit-options.nix
+1
-1
nixos/modules/system/boot/systemd-unit-options.nix
···
217
217
218
218
environment = mkOption {
219
219
default = {};
220
220
-
type = with types; attrsOf (nullOr (either str package));
220
220
+
type = with types; attrsOf (nullOr (either str (either path package)));
221
221
example = { PATH = "/foo/bar/bin"; LANG = "nl_NL.UTF-8"; };
222
222
description = "Environment variables passed to the service's processes.";
223
223
};