nixos/desktop/dev.nix
Julian Sutter 8de6c0fc28 Fix desktop file format in all desktop modules
- 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
2025-07-31 01:46:34 -07:00

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;
}