nixos-configs/modules/dolphin.nix
matt1432 77643378cc
All checks were successful
Discord / discord commits (push) Has been skipped
refactor: rename vars.user to vars.mainUser
2024-01-09 13:13:04 -05:00

34 lines
585 B
Nix

{
config,
pkgs,
...
}: let
inherit (config.vars) mainUser;
in {
environment.systemPackages = with pkgs; [
plasma5Packages.kio-admin
];
home-manager.users.${mainUser}.home.packages = with pkgs;
[]
++ (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
]);
}