nixos-config/profiles/applications/packages.nix
2023-08-07 14:02:37 +04:00

52 lines
816 B
Nix

{ pkgs, config, lib, inputs, ... }: {
home-manager.users.balsoft.home.packages = with pkgs;
[
# Internet
wget
curl
exa
jq
] ++ lib.optionals config.deviceSpecific.goodMachine [
# steamcmd
# steam
haskellPackages.hoogle
nixfmt
# nil
nixpkgs-fmt
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
breeze-icons
shellcheck
proselint
ripgrep
bat
jless
pandoc
codebraid
sioyek
];
}