mirror of
https://github.com/nix-community/home-manager
synced 2024-12-25 03:09:47 +01:00
home-environment: minor code simplification
This commit is contained in:
parent
f0d207f380
commit
02219dcd79
1 changed files with 1 additions and 2 deletions
|
@ -227,8 +227,7 @@ in
|
||||||
|
|
||||||
home.sessionVariables =
|
home.sessionVariables =
|
||||||
let
|
let
|
||||||
maybeSet = name: value:
|
maybeSet = n: v: optionalAttrs (v != null) { ${n} = v; };
|
||||||
listToAttrs (optional (value != null) { inherit name value; });
|
|
||||||
in
|
in
|
||||||
(maybeSet "LANG" cfg.language.base)
|
(maybeSet "LANG" cfg.language.base)
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue