nixos-configs/modules/dolphin.nix

34 lines
585 B
Nix
Raw Normal View History

2023-12-09 20:29:33 -05:00
{
config,
pkgs,
...
}: let
inherit (config.vars) mainUser;
in {
environment.systemPackages = with pkgs; [
plasma5Packages.kio-admin
];
home-manager.users.${mainUser}.home.packages = with pkgs;
2023-12-09 20:29:33 -05:00
[]
++ (with pkgs.plasma5Packages; [
ark
kcharselect
kdenlive
okular
# Dolphin & co
dolphin
dolphin-plugins
kdegraphics-thumbnailers
ffmpegthumbs
kio
kio-admin # needs to be both here and in system pkgs
kio-extras
kmime
])
++ (with pkgs.gnome; [
gnome-calculator
]);
}