mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-14 00:59:44 +00:00
21 lines
402 B
Nix
21 lines
402 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
options = {
|
|
kde-utils.enable = lib.mkEnableOption "enable kde-utils";
|
|
};
|
|
config = lib.mkIf config.kde-utils.enable {
|
|
home.packages = with pkgs; [
|
|
kdeconnect
|
|
libsForQt5.kwallet
|
|
libsForQt5.kwallet-pam
|
|
libsForQt5.kwalletmanager
|
|
libsForQt5.ksshaskpass
|
|
plasma5Packages.qtstyleplugin-kvantum
|
|
yakuake
|
|
];
|
|
};
|
|
}
|