nixos-config/Desktop/software.nix

162 lines
2.1 KiB
Nix
Raw Normal View History

2020-10-16 11:33:25 +00:00
{ config, pkgs, ... }:
let
unstable = import <nixos-unstable> {};
in {
environment.systemPackages = with pkgs; [
# Utils
pciutils
usbutils
i2c-tools
lm_sensors
bind
nix-bundle
file
2021-01-26 18:18:43 +00:00
restic
# Connectivity
nmap
libcec
# File systems
gparted
# Archives
unzip
2020-10-16 11:33:25 +00:00
unrar
2021-01-26 18:18:43 +00:00
# Running things
appimage-run
# Manuals
unstable.manix
tldr
# Terminal
cool-retro-term
mosh
tmux
neofetch
ponysay
bpytop
2020-10-16 11:33:25 +00:00
# Voice
speechd
rhvoice
# Wireguard
#wireguard
#wireguard-tools
nextcloud-client
# Encrypted folders
encfs
#gencfsm
# Browsers
firefox
2021-01-26 18:18:43 +00:00
ungoogled-chromium
unstable.tor-browser-bundle-bin
# Downloaders
2020-10-16 11:33:25 +00:00
transmission-gtk
youtube-dl
2021-01-26 18:18:43 +00:00
syncthing
wget
2020-10-16 11:33:25 +00:00
# Messangers
tdesktop
#discord
mumble
#riot-desktop
2021-01-26 18:18:43 +00:00
qtox
2020-10-16 11:33:25 +00:00
dino
2021-01-26 18:18:43 +00:00
#zoom-us
#teams
2020-10-16 11:33:25 +00:00
teamspeak_client
# Games
steam
steam-run-native
openttd
minecraft
vulkan-tools
wineWowPackages.full
wineWowPackages.fonts
winetricks
xonotic
2021-01-26 18:18:43 +00:00
# VCS
git
gitAndTools.git-bug
# IDE
2020-10-16 11:33:25 +00:00
vscode
2021-01-26 18:18:43 +00:00
(pkgs.callPackage ./modules/my_vim.nix {})
# Compilers and interpretators
ccls
cmake
gcc-unwrapped
2020-10-16 11:33:25 +00:00
octaveFull
texlive.combined.scheme-full
python3Full
nodejs
2021-01-26 18:18:43 +00:00
fdroidserver
2020-10-16 11:33:25 +00:00
2021-01-26 18:18:43 +00:00
# Docker and orchestration
ansible_2_9
docker-compose
# Maps
2020-10-16 11:33:25 +00:00
josm
# Screen recording
unstable.obs-studio
2021-01-26 18:18:43 +00:00
unstable.obs-wlrobs
unstable.obs-v4l2sink
#unstable.obs-linuxbrowser
2020-10-16 11:33:25 +00:00
peek
# Graphics
krita
gmic_krita_qt
potrace
2021-01-26 18:18:43 +00:00
ffmpeg
2020-10-16 11:33:25 +00:00
# Audio
audacity
# lmms
picard
cmus
spotify
2021-01-26 18:18:43 +00:00
pulseeffects
2020-10-16 11:33:25 +00:00
vlc
2021-01-26 18:18:43 +00:00
syncplay
kruler
2020-10-16 11:33:25 +00:00
# Plugins
# ladspaPlugins
# lsp-plugins
# Documents
anki
libreoffice
homebank
trilium-desktop
klavaro
liberation_ttf
keepassxc
2021-01-26 18:18:43 +00:00
glow
2020-10-16 11:33:25 +00:00
# Themes
paper-icon-theme
plata-theme
];
}