mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
accounts/calendar: fix defaultText rendering
This commit is contained in:
parent
5ec753a1fc
commit
5765fe4feb
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ let
|
||||||
path = mkOption {
|
path = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "${cfg.basePath}/${name}";
|
default = "${cfg.basePath}/${name}";
|
||||||
defaultText = "‹accounts.calendar.basePath›/‹name›";
|
defaultText =
|
||||||
|
lib.literalExpression "‹accounts.calendar.basePath›/‹name›";
|
||||||
description = "The path of the storage.";
|
description = "The path of the storage.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue