diff --git a/modules/nixos/bundles/desktop.nix b/modules/nixos/bundles/desktop.nix index ab5f52b..9c683af 100644 --- a/modules/nixos/bundles/desktop.nix +++ b/modules/nixos/bundles/desktop.nix @@ -19,10 +19,7 @@ in calibre cameractrls-gtk3 jellyfin-media-player - kiwix - libreoffice obsidian - vlc ]; }; diff --git a/modules/nixos/features/plasma.nix b/modules/nixos/features/plasma.nix index 0855f9a..45bcc5e 100644 --- a/modules/nixos/features/plasma.nix +++ b/modules/nixos/features/plasma.nix @@ -1,4 +1,9 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: let feature = "plasma"; in @@ -12,11 +17,20 @@ in }; }; - environment.systemPackages = with pkgs.kdePackages; [ - skanlite - ktorrent - kzones - ]; + environment.systemPackages = + with pkgs.kdePackages; + [ + kontact + calligra + kdeconnect-kde + ktorrent + kget + kzones + ] + ++ (with pkgs; [ + kile + haruna + ]); }; options.${feature}.enable = lib.mkEnableOption "enables ${feature}";