28 lines
383 B
Nix
28 lines
383 B
Nix
{ pkgs, ...}:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
libreoffice
|
|
onlyoffice-bin
|
|
vlc
|
|
signal-desktop
|
|
unstable.webcord
|
|
unstable.localsend
|
|
bitwarden
|
|
pavucontrol
|
|
unstable.youtube-music
|
|
unstable.organicmaps
|
|
unstable.cubiomes-viewer
|
|
bottles
|
|
sshfs
|
|
unstable.yt-dlp
|
|
|
|
# Image editing
|
|
gimp
|
|
inkscape
|
|
|
|
# CLI tools
|
|
cloc
|
|
];
|
|
}
|