nixpkgs/home/packages.nix

96 lines
2.4 KiB
Nix

{ pkgs, ownLib }:
with pkgs; [
nix
cacert
nvd
# System tools
dmenu
gnome.gnome-screenshot
networkmanager_dmenu
i3blocks
st
ncdu
tree
rst2pdf
borgbackup
keepassxc
# Git itself is installed via git module
git-crypt
rclone
# Dev tools
litecli
sqlite
mycli
mkcert # TODO: Create own wrapper script to create new certs
tig
universal-ctags
silver-searcher
curl
wget
kcachegrind
geckodriver
docker-compose
# In order to pull binaries from their.
# E.g. phps: https://github.com/fossar/nix-phps#how-to-use
cachix
# Coding / Neovim
# Does not provide any autocompletion yet, don't know why
# Use in conjuncion with https://github.com/autozimu/LanguageClient-neovim
# rnix-lsp
# For fzf, looks like it is missing right now there
# .nix-profile/bin/fzf-tmux: line 183: bc: command not found
bc
# Communication
signal-desktop
thunderbird
# Media
vlc
gtkpod
handbrake
# Typical download looks like: yt-dlp -S 'res:700,ext:mp4' <url>
yt-dlp
spotdl
# tenacity
# Start Google Chrome: NIXPKGS_ALLOW_UNFREE=1 nix-shell -p google-chrome --run google-chrome-stable
ffmpeg-full # full in order to grab x11
# Recording system audio while keeping audio quite:
# ffmpeg -f pulse -i default output.mp3
# Change recording from output to monitor: https://askubuntu.com/questions/682144/capturing-only-desktop-audio-with-ffmpeg/682793#682793
# Split large file into chunks (https://unix.stackexchange.com/questions/1670/how-can-i-use-ffmpeg-to-split-mpeg-video-into-10-minute-chunks):
# ffmpeg -i output.mp3 -c copy -map 0 -segment_time 00:15:00 -f segment output%03d.mp3
# Record audio and video on ubuntu: ffmpeg -f pulse -i alsa_output.pci-0000_00_1f.3.analog-stereo.monitor -f x11grab -y -framerate 30 -s 1280x720 -i :0.0 -c:v libx264 -preset superfast -crf 18 output.mkv
python39Packages.mutagen
feh
gtk-engine-murrine
] ++ (if ownLib.onHikari {} then [
# hikari
acpilight # Used to support xbacklight
(callPackage ./packages/custom/update-nixos-system { })
# Needs to be installed by ubuntu on ubuntu, therefore only add on hikari
sound-juicer
] else [
# hikari 2
(callPackage ./packages/custom/update-ubuntu-system { })
# TODO: Right now only for Ubuntu (hikari2) system
(callPackage ./packages/custom/backup { })
]) ++ (callPackage ./packages/custom {
inherit ownLib;
})