1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02: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.
'';