nixos-config/Laptop/software.nix

103 lines
1.4 KiB
Nix
Raw Normal View History

2019-12-25 11:19:09 +00:00
{ config, pkgs, ... }:
2020-03-04 22:14:35 +00:00
let
unstable = import <nixos-unstable> {};
in {
2019-12-25 11:19:09 +00:00
environment.systemPackages = with pkgs; [
# Utils
cool-retro-term
tmux
ponysay
2020-03-04 22:14:35 +00:00
(pkgs.callPackage ./modules/my_vim.nix {})
2019-12-25 11:19:09 +00:00
neofetch
pciutils
2020-05-16 17:32:53 +00:00
usbutils
bind
# openvpn
2019-12-25 11:19:09 +00:00
git
2020-03-04 22:14:35 +00:00
unzip
tldr
ffmpeg
2020-05-16 17:32:53 +00:00
wget
nix-bundle
nmap
# Wireguard
wireguard
wireguard-tools
2020-03-04 22:14:35 +00:00
nextcloud-client
2019-12-25 11:19:09 +00:00
# Encrypted folders
encfs
2020-05-16 17:32:53 +00:00
#gencfsm
2019-12-25 11:19:09 +00:00
# Browsers
firefox
2020-03-04 22:14:35 +00:00
transmission-gtk
2020-05-16 17:32:53 +00:00
youtube-dl
2019-12-25 11:19:09 +00:00
# Messangers
tdesktop
2020-05-16 17:32:53 +00:00
#discord
mumble
#riot-desktop
2020-03-04 22:14:35 +00:00
qtox
2020-05-16 17:32:53 +00:00
dino
zoom-us
2019-12-25 11:19:09 +00:00
# Games
steam
2020-03-04 22:14:35 +00:00
steam-run-native
unstable.openttd
2020-05-16 17:32:53 +00:00
lutris
2020-03-04 22:14:35 +00:00
vulkan-tools
2020-05-16 17:32:53 +00:00
wineWowPackages.full
wineWowPackages.fonts
2019-12-25 11:19:09 +00:00
# Development
vscode
ansible
octaveFull
texlive.combined.scheme-full
gcc-unwrapped
python3Full
2020-05-16 17:32:53 +00:00
# (import (builtins.fetchTarball "https://github.com/babariviere/nixpkgs/archive/flutter-init.tar.gz") {}).flutter
2020-03-04 22:14:35 +00:00
#android-studio
cmake
2020-05-16 17:32:53 +00:00
nodejs
ccls
2020-03-04 22:14:35 +00:00
josm
2019-12-25 11:19:09 +00:00
# Screen recording
obs-studio
peek
# Graphics
krita
gmic_krita_qt
2020-05-16 17:32:53 +00:00
potrace
2019-12-25 11:19:09 +00:00
# Audio
audacity
2020-05-16 17:32:53 +00:00
# lmms
2019-12-25 11:19:09 +00:00
picard
2020-03-04 22:14:35 +00:00
cmus
# Plugins
2020-05-16 17:32:53 +00:00
# ladspaPlugins
# lsp-plugins
2019-12-25 11:19:09 +00:00
# Documents
anki
libreoffice
2020-03-04 22:14:35 +00:00
homebank
2020-05-16 17:32:53 +00:00
trilium
klavaro
liberation_ttf
2019-12-25 11:19:09 +00:00
];
}