install more kde packgaes in favour of non-native solutions

This commit is contained in:
wi11-holdsworth 2025-08-06 12:56:21 +10:00
parent d94c61b029
commit efe9e1b8c6
2 changed files with 20 additions and 9 deletions

View file

@ -19,10 +19,7 @@ in
calibre calibre
cameractrls-gtk3 cameractrls-gtk3
jellyfin-media-player jellyfin-media-player
kiwix
libreoffice
obsidian obsidian
vlc
]; ];
}; };

View file

@ -1,4 +1,9 @@
{ config, lib, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
let let
feature = "plasma"; feature = "plasma";
in in
@ -12,11 +17,20 @@ in
}; };
}; };
environment.systemPackages = with pkgs.kdePackages; [ environment.systemPackages =
skanlite with pkgs.kdePackages;
[
kontact
calligra
kdeconnect-kde
ktorrent ktorrent
kget
kzones kzones
]; ]
++ (with pkgs; [
kile
haruna
]);
}; };
options.${feature}.enable = lib.mkEnableOption "enables ${feature}"; options.${feature}.enable = lib.mkEnableOption "enables ${feature}";