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
cameractrls-gtk3
jellyfin-media-player
kiwix
libreoffice
obsidian
vlc
];
};

View file

@ -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
environment.systemPackages =
with pkgs.kdePackages;
[
kontact
calligra
kdeconnect-kde
ktorrent
kget
kzones
];
]
++ (with pkgs; [
kile
haruna
]);
};
options.${feature}.enable = lib.mkEnableOption "enables ${feature}";