mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
accounts/contact: add sensible defaults to the localModule (#6799)
This adds defaults to the `localModule` that match the ones in accounts/calendar. This way there is no need to explicitly define the local part, only if the defaults should be changed.
This commit is contained in:
parent
543caa313a
commit
47eb2d80f9
1 changed files with 2 additions and 1 deletions
|
|
@ -21,12 +21,13 @@ let
|
||||||
"filesystem"
|
"filesystem"
|
||||||
"singlefile"
|
"singlefile"
|
||||||
];
|
];
|
||||||
|
default = "filesystem";
|
||||||
description = "The type of the storage.";
|
description = "The type of the storage.";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileExt = mkOption {
|
fileExt = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = null;
|
default = ".vcf";
|
||||||
description = "The file extension to use.";
|
description = "The file extension to use.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue