mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-05 08:16:56 +00:00
home-environment: fix evaluation error on undefined lang.base
This commit is contained in:
parent
386d2dbd25
commit
16cb542828
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…
Add table
Reference in a new issue