nixos-config/Laptop/software.nix

80 lines
1.0 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
openvpn
git
2020-03-04 22:14:35 +00:00
unzip
tldr
ffmpeg
nextcloud-client
2019-12-25 11:19:09 +00:00
# Encrypted folders
encfs
gencfsm
# Browsers
firefox
2020-03-04 22:14:35 +00:00
transmission-gtk
2019-12-25 11:19:09 +00:00
# Messangers
tdesktop
discord
riot-desktop
2020-03-04 22:14:35 +00:00
qtox
2019-12-25 11:19:09 +00:00
# Games
steam
2020-03-04 22:14:35 +00:00
steam-run-native
unstable.openttd
vulkan-tools
2019-12-25 11:19:09 +00:00
lutris-unwrapped
# Development
vscode
ansible
octaveFull
texlive.combined.scheme-full
gcc-unwrapped
python3Full
2020-03-04 22:14:35 +00:00
#android-studio
cmake
josm
2019-12-25 11:19:09 +00:00
# Screen recording
obs-studio
peek
# Graphics
krita
gmic_krita_qt
# Audio
audacity
lmms
picard
2020-03-04 22:14:35 +00:00
cmus
# Plugins
ladspaPlugins
lsp-plugins
2019-12-25 11:19:09 +00:00
# Documents
anki
libreoffice
2020-03-04 22:14:35 +00:00
homebank
2019-12-25 11:19:09 +00:00
];
}