mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
nixos: systemd.globalEnvironment: fix type
Follow up fix of fb2a8d6669
https://github.com/NixOS/nixpkgs/pull/38356
https://github.com/NixOS/nixpkgs/pull/40416
This commit is contained in:
parent
4884f58f4e
commit
35c069ea02
1 changed files with 1 additions and 1 deletions
|
@ -515,7 +515,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.globalEnvironment = mkOption {
|
systemd.globalEnvironment = mkOption {
|
||||||
type = with types; attrsOf (nullOr (either str package));
|
type = with types; attrsOf (nullOr (either str (either path package)));
|
||||||
default = {};
|
default = {};
|
||||||
example = { TZ = "CET"; };
|
example = { TZ = "CET"; };
|
||||||
description = ''
|
description = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue