Files
TheaninovOS/modules/home-manager/packages/default.nix
2024-04-23 20:41:23 +02:00

57 lines
831 B
Nix

{ pkgs, ... }:
{
xdg.configFile."ranger/rc.conf".source = ./ranger.conf;
home.packages = with pkgs; [
# nix
cachix
lorri
vulnix
# browsers
chromium
brave
# media
jellyfin-media-player
youtube-dl
# tartube
yt-dlp
f3d
mpv
makemkv
handbrake
metadata-cleaner
#bitwarden
# chat apps
(import ./threema-desktop.nix { inherit pkgs; })
(vesktop.override { withSystemVencord = false; })
element-desktop
# office
libreoffice
apostrophe # markdown editor
# creative
gimp
inkscape-with-extensions
scribus
audacity
pinta
kdePackages.kdenlive
blender-hip
# development
insomnia
avalonia-ilspy
ghidra
ida-free
# utils
libqalculate
ranger
neofetch
filezilla
];
}