summary refs log tree commit diff
path: root/nixos/modules/system/boot/systemd-unit-options.nix
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-04-03 00:36:52 +0200
committerSilvan Mosberger <infinisil@icloud.com>2018-04-03 00:36:52 +0200
commite9fc2558f95152020e8b588f92563d6664f4c3c3 (patch)
treeb7713d81e4d6f5f8a90b091bfe5663c2d43847a2 /nixos/modules/system/boot/systemd-unit-options.nix
parent00fc66dc7dcda7fc38a9cc7f4dbd7bb66f28c5f9 (diff)
downloadnixpkgs-e9fc2558f95152020e8b588f92563d6664f4c3c3.tar
nixpkgs-e9fc2558f95152020e8b588f92563d6664f4c3c3.tar.gz
nixpkgs-e9fc2558f95152020e8b588f92563d6664f4c3c3.tar.bz2
nixpkgs-e9fc2558f95152020e8b588f92563d6664f4c3c3.tar.lz
nixpkgs-e9fc2558f95152020e8b588f92563d6664f4c3c3.tar.xz
nixpkgs-e9fc2558f95152020e8b588f92563d6664f4c3c3.tar.zst
nixpkgs-e9fc2558f95152020e8b588f92563d6664f4c3c3.zip
nixos/systemd: Fix environment type -> allows overriding
Diffstat (limited to 'nixos/modules/system/boot/systemd-unit-options.nix')
-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 43a9c28bb69..5255f1a1b97 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 = types.attrs; # FIXME
+      type = with types; attrsOf (nullOr (either str package));
       example = { PATH = "/foo/bar/bin"; LANG = "nl_NL.UTF-8"; };
       description = "Environment variables passed to the service's processes.";
     };