Skip to content

Commit

Permalink
programs/kde-pim: init
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Apr 3, 2024
1 parent 9b1984c commit 670a714
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions nixos/modules/module-list.nix
Expand Up @@ -206,6 +206,7 @@
./programs/java.nix
./programs/joycond-cemuhook.nix
./programs/k3b.nix
./programs/kde-pim.nix
./programs/k40-whisperer.nix
./programs/kbdlight.nix
./programs/kclock.nix
Expand Down
22 changes: 22 additions & 0 deletions nixos/modules/programs/kde-pim.nix
@@ -0,0 +1,22 @@
{ config, lib, pkgs, ... }:

let
cfg = config.programs.kde-pim;
in
{
options.programs.kde-pim = {
enable = lib.mkEnableOption "KDE PIM";
};

config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs.kdePackages; [
# core packages
akonadi
kdepim-runtime

# required by kmail
akonadiconsole
kmail-account-wizard
];
};
}

0 comments on commit 670a714

Please sign in to comment.