33 lines
626 B
Nix
33 lines
626 B
Nix
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
users.users.nimmo.packages = with pkgs; [
|
|
# Internet & Communication
|
|
firefox
|
|
bitwarden
|
|
nextcloud-client
|
|
kdePackages.kdeconnect
|
|
|
|
# Media
|
|
haruna
|
|
gwenview
|
|
|
|
# Productivity / Office
|
|
kdePackages.kate
|
|
kdePackages.kcalc
|
|
trilium-desktop
|
|
remmina # RDP Client
|
|
|
|
# Tools & Utilities
|
|
kdePackages.spectacle
|
|
kdePackages.ark
|
|
kdePackages.filelight
|
|
meld
|
|
|
|
# Gaming (Steam handled in main config, this is extra tools)
|
|
protonup-qt
|
|
|
|
# Custom Flake Packages
|
|
inputs.antigravity.packages.${pkgs.system}.default
|
|
];
|
|
}
|