- 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
24 lines
522 B
Nix
24 lines
522 B
Nix
{ config, pkgs, pkgs-unstable, lib, ... }:
|
|
|
|
{
|
|
# Add this module's pinned applications
|
|
desktop.plasma.pinnedApps = [
|
|
"windsurf.desktop" # Windsurf IDE
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
(python3.withPackages(ps: with ps; [ pandas requests python-dotenv pip uv ]))
|
|
nodejs
|
|
rpi-imager
|
|
putty # SSH/Telnet client
|
|
pkgs-unstable.windsurf # Use windsurf from unstable packages
|
|
];
|
|
|
|
programs.nix-ld.enable = true;
|
|
|
|
# Android Development
|
|
programs.adb.enable = true;
|
|
|
|
|
|
|
|
}
|