lol

nixos: systemd.services.*.environment: fix type

+1 -1
+1 -1
nixos/modules/system/boot/systemd-unit-options.nix
··· 217 217 218 218 environment = mkOption { 219 219 default = {}; 220 - type = with types; attrsOf (nullOr (either str package)); 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 };