summary refs log tree commit diff
path: root/nixos/modules/system
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-05-13 18:15:55 +0200
committerGitHub <noreply@github.com>2018-05-13 18:15:55 +0200
commit8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d (patch)
tree56ad5c06c6f32b5cd46243f6bd9ed0eebc3f6a9e /nixos/modules/system
parentce5091a7e3d82089f0438f35329193771f5fbd44 (diff)
parentfb2a8d66699c96d6a687eb71ebfcca08e3405037 (diff)
downloadnixlib-8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d.tar
nixlib-8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d.tar.gz
nixlib-8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d.tar.bz2
nixlib-8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d.tar.lz
nixlib-8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d.tar.xz
nixlib-8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d.tar.zst
nixlib-8c78d3a527d3377fb8a13383c3ed1dccbb8c4e2d.zip
Merge pull request #40416 from oxij/os/fix-some-types
nixos: fix some types
Diffstat (limited to 'nixos/modules/system')
-rw-r--r--nixos/modules/system/boot/systemd-unit-options.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/systemd-unit-options.nix b/nixos/modules/system/boot/systemd-unit-options.nix
index 5255f1a1b97a..2cff25a8c854 100644
--- a/nixos/modules/system/boot/systemd-unit-options.nix
+++ b/nixos/modules/system/boot/systemd-unit-options.nix
@@ -217,7 +217,7 @@ in rec {
 
     environment = mkOption {
       default = {};
-      type = with types; attrsOf (nullOr (either str package));
+      type = with types; attrsOf (nullOr (either str (either path package)));
       example = { PATH = "/foo/bar/bin"; LANG = "nl_NL.UTF-8"; };
       description = "Environment variables passed to the service's processes.";
     };