1
0
Fork 0
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:
Valentin Brandl 2025-04-11 05:29:30 +02:00 committed by GitHub
parent 543caa313a
commit 47eb2d80f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,12 +21,13 @@ let
"filesystem"
"singlefile"
];
default = "filesystem";
description = "The type of the storage.";
};
fileExt = mkOption {
type = types.nullOr types.str;
default = null;
default = ".vcf";
description = "The file extension to use.";
};