- Remove incorrect 'applications:' prefix from desktop file names - All modules now use correct format (e.g., 'steam.desktop' not 'applications:steam.desktop') - Fixed modules: gaming.nix, office.nix, dev.nix, media.nix, dnm.nix - Modular Plasma pinning system now works correctly for all desktop modules - All 14 applications should now appear pinned after Plasma session restart
22 lines
622 B
Nix
22 lines
622 B
Nix
{ config, pkgs, pkgs-unstable, lib, ... }:
|
|
|
|
{
|
|
# Add this module's pinned applications
|
|
desktop.plasma.pinnedApps = [
|
|
"slack.desktop" # Team communication
|
|
"signal-desktop.desktop" # Private messaging
|
|
"libreoffice-writer.desktop" # Write (LibreOffice Writer)
|
|
"libreoffice-calc.desktop" # Calc (LibreOffice Calc)
|
|
];
|
|
environment.systemPackages = with pkgs; [
|
|
libreoffice-qt
|
|
thunderbird
|
|
slack # Team communication
|
|
pkgs-unstable.signal-desktop # Private messaging
|
|
# gimp # Temporarily commented out to avoid build errors
|
|
# calibre
|
|
];
|
|
|
|
|
|
|
|
}
|