nix-config/home/packages.nix
2024-10-19 15:46:43 +02:00

39 lines
703 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# Desktop Applications
vesktop
obsidian
spotify
google-chrome
signal-desktop
element-desktop
# bitwarden-desktop -- currently does not build
# Terminal applications
gh # github
easyeffects
hyfetch
nnn
# For Hyprland hotkeys:
brightnessctl
playerctl
hyprshot
polkit_gnome
pavucontrol
# nix-tools
nix-index
nix-output-monitor
nil
nh
# Dev Things
vscode
jetbrains.idea-ultimate
jetbrains.pycharm-professional
jetbrains.jdk
];
nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
}