nixos-config/Laptop/software.nix

159 lines
1.9 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
2022-07-01 19:40:13 +00:00
unstable = import <nixos-unstable> { config.allowUnfree = true; };
in
{
2019-12-25 11:19:09 +00:00
environment.systemPackages = with pkgs; [
2022-07-01 19:40:13 +00:00
# Utils
(pkgs.callPackage ./modules/my_vim.nix { })
2019-12-25 11:19:09 +00:00
pciutils
2020-05-16 17:32:53 +00:00
usbutils
2022-07-01 19:40:13 +00:00
i2c-tools
2020-05-16 17:32:53 +00:00
bind
nix-bundle
2022-07-01 19:40:13 +00:00
file
glxinfo
2020-05-16 17:32:53 +00:00
nmap
2022-07-01 19:40:13 +00:00
gparted
# Archives
unzip
unrar
appimage-run
# Manuals
unstable.manix
tldr
# Terminal
cool-retro-term
mosh
tmux
neofetch
ponysay
bpytop
httpie
htop
# Voice
speechd
rhvoice
unstable.noisetorch
xsane
2020-05-16 17:32:53 +00:00
# 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
2022-07-01 19:40:13 +00:00
ungoogled-chromium
# Downloaders
2020-03-04 22:14:35 +00:00
transmission-gtk
2022-07-01 19:40:13 +00:00
yt-dlp
syncthing
wget
2019-12-25 11:19:09 +00:00
# Messangers
tdesktop
2020-05-16 17:32:53 +00:00
mumble
2020-03-04 22:14:35 +00:00
qtox
2020-05-16 17:32:53 +00:00
dino
2022-07-01 19:40:13 +00:00
gomuks
2019-12-25 11:19:09 +00:00
# Games
steam
2022-07-01 19:40:13 +00:00
steam-run
2020-03-04 22:14:35 +00:00
unstable.openttd
2022-07-01 19:40:13 +00:00
minecraft
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
2022-07-01 19:40:13 +00:00
xonotic
cataclysm-dda
# VCS
git
gitAndTools.git-bug
# IDE
lens
postman
unstable.androidStudioPackages.canary
# Compilers and interpretators
ccls
cmake
2019-12-25 11:19:09 +00:00
gcc-unwrapped
2022-07-01 19:40:13 +00:00
octaveFull
2019-12-25 11:19:09 +00:00
python3Full
2020-05-16 17:32:53 +00:00
nodejs
2022-07-01 19:40:13 +00:00
nixpkgs-fmt
2020-05-16 17:32:53 +00:00
2022-07-01 19:40:13 +00:00
# Docker and orchestration
ansible
docker-compose
2020-03-04 22:14:35 +00:00
2022-07-01 19:40:13 +00:00
# Maps
2020-03-04 22:14:35 +00:00
josm
2022-07-01 19:40:13 +00:00
2019-12-25 11:19:09 +00:00
# Screen recording
obs-studio
peek
2022-07-01 19:40:13 +00:00
2019-12-25 11:19:09 +00:00
# Graphics
2022-07-01 19:40:13 +00:00
blender
2019-12-25 11:19:09 +00:00
krita
gmic_krita_qt
2020-05-16 17:32:53 +00:00
potrace
2022-07-01 19:40:13 +00:00
ffmpeg
inkscape
imagemagick
2019-12-25 11:19:09 +00:00
# Audio
audacity
2022-07-01 19:40:13 +00:00
pulseeffects-pw
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
2022-07-01 19:40:13 +00:00
spotify
rhythmbox
unstable.helvum
vlc
syncplay
# DAW
zrythm
distrho
helvum
zam-plugins
x42-plugins
helm
zyn-fusion
lsp-plugins
ardour
2020-03-04 22:14:35 +00:00
2019-12-25 11:19:09 +00:00
# Documents
anki
libreoffice
2020-05-16 17:32:53 +00:00
liberation_ttf
2022-07-01 19:40:13 +00:00
obsidian
keepassxc
glow
2019-12-25 11:19:09 +00:00
];
2022-07-01 19:40:13 +00:00
}