correct theming
This commit is contained in:
parent
7ac1e734e7
commit
1c0da4eba9
5 changed files with 93 additions and 54 deletions
26
modules/_home/apps.nix
Normal file
26
modules/_home/apps.nix
Normal 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;
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue