mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-11 02:56:27 +00:00
57 lines
831 B
Nix
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
|
|
];
|
|
}
|