- 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
16 lines
327 B
Nix
16 lines
327 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Add this module's pinned applications
|
|
desktop.plasma.pinnedApps = [
|
|
"tor-browser.desktop" # Tor browser
|
|
"org.kde.kleopatra.desktop" # Kleopatra GPG
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
feather
|
|
electrum
|
|
kdePackages.kleopatra
|
|
tor-browser
|
|
];
|
|
}
|