nixos-config/profiles/applications/packages.nix
2022-05-03 15:00:07 +03:00

44 lines
718 B
Nix

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