nixos-config/profiles/applications/packages.nix
2021-08-21 11:07:31 +03:00

44 lines
724 B
Nix

{ pkgs, config, lib, inputs, ... }: {
home-manager.users.balsoft.home.packages = with pkgs;
[
# Internet
wget
curl
unrar
neochat
exa
] ++ lib.optionals config.deviceSpecific.goodMachine [
steamcmd
steam
haskellPackages.hoogle
nixfmt
niv
stdman
libqalculate
# Messaging
libnotify
# Audio/Video
vlc
pavucontrol
# Tools
zip
unrar
plasma-systemmonitor
wl-clipboard
grim
slurp
abiword
gnumeric
gcalcli
xdg_utils
lambda-launcher
nix-patch
gopass
papirus-icon-theme
shellcheck
proselint
ripgrep
];
}