mirror of
https://github.com/nix-community/home-manager
synced 2024-12-24 18:59:47 +01:00
home-environment: fix evaluation error on undefined lang.base
This commit is contained in:
parent
5d49ea6d49
commit
fa73a7f916
1 changed files with 2 additions and 1 deletions
|
@ -9,7 +9,8 @@ let
|
||||||
languageSubModule = types.submodule {
|
languageSubModule = types.submodule {
|
||||||
options = {
|
options = {
|
||||||
base = mkOption {
|
base = mkOption {
|
||||||
type = types.str;
|
default = null;
|
||||||
|
type = types.nullOr types.str;
|
||||||
description = ''
|
description = ''
|
||||||
The language to use unless overridden by a more specific option.
|
The language to use unless overridden by a more specific option.
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue