1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2024-12-14 11:57:55 +00:00

home-environment: fix evaluation error on undefined lang.base

This commit is contained in:
Robin Stumm 2017-02-12 01:18:37 +01:00
parent 386d2dbd25
commit 16cb542828

View file

@ -9,7 +9,8 @@ let
languageSubModule = types.submodule {
options = {
base = mkOption {
type = types.str;
default = null;
type = types.nullOr types.str;
description = ''
The language to use unless overridden by a more specific option.
'';