correct theming

This commit is contained in:
Zoty 2026-06-27 08:59:43 -03:00
parent 7ac1e734e7
commit 1c0da4eba9
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
5 changed files with 93 additions and 54 deletions

26
modules/_home/apps.nix Normal file
View file

@ -0,0 +1,26 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
# File manager + KDE ecosystem
kdePackages.dolphin
kdePackages.qtwayland
kdePackages.kio
kdePackages.kio-fuse
kdePackages.kio-extras
kdePackages.ark
kdePackages.ffmpegthumbs
kdePackages.kded
kdePackages.systemsettings
kdePackages.ksshaskpass
ffmpegthumbnailer
# Desktop utilities
qalculate-gtk
];
# Use KDE file chooser portal for Dolphin integration
xdg.configFile."xdg-desktop-portal/niri-portals.conf".text = ''
[preferred]
default=gnome;
org.freedesktop.impl.portal.FileChooser=kde;
'';
}