nixos-config/modules/applications/packages.nix

43 lines
784 B
Nix
Raw Normal View History

2020-04-27 19:48:28 +04:00
{ pkgs, config, lib, inputs, ... }: {
2020-05-20 19:41:56 +04:00
home-manager.users.balsoft.home.packages = with pkgs;
2020-02-17 17:00:59 +04:00
[
# Internet
wget
curl
unrar
2021-01-13 15:24:22 +04:00
neochat
2020-02-17 17:00:59 +04:00
] ++ lib.optionals config.deviceSpecific.goodMachine ([
steamcmd
steam
haskellPackages.hoogle
nixfmt
niv
stdman
libqalculate
# Messaging
libnotify
2020-12-25 16:12:41 +04:00
spectral
2020-02-17 17:00:59 +04:00
# Audio/Video
vlc
lxqt.pavucontrol-qt
# Tools
zip
unrar
ksysguard
wl-clipboard
grim
slurp
abiword
gnumeric
gcalcli
breeze-icons
xdg_utils
2020-04-27 21:03:22 +04:00
inputs.yt-utilities.defaultPackage.x86_64-linux
2020-06-21 22:48:26 +04:00
lambda-launcher
nix-patch
2020-05-25 16:30:06 +04:00
pass-wayland
2020-06-21 13:17:20 +04:00
papirus-icon-theme
2020-12-24 16:19:24 +04:00
gnome3.simple-scan
]);
2020-02-17 17:00:59 +04:00
}