nix-config/home/packages.nix
2024-10-22 23:19:50 +02:00

39 lines
710 B
Nix

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