1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 11:28:32 +02:00

khal: add package option

This commit is contained in:
Jany 2024-05-27 21:59:26 +00:00 committed by GitHub
parent 7e769959e8
commit 939375b396
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -168,6 +168,8 @@ in {
options.programs.khal = {
enable = mkEnableOption "khal, a CLI calendar application";
package = mkPackageOption pkgs "khal" { };
locale = mkOption {
type = lib.types.submodule { options = localeOptions; };
description = ''
@ -197,7 +199,7 @@ in {
};
config = mkIf cfg.enable {
home.packages = [ pkgs.khal ];
home.packages = [ cfg.package ];
xdg.configFile."khal/config".text = concatStringsSep "\n" ([ "[calendars]" ]
++ mapAttrsToList genCalendarStr khalAccounts ++ [