nix-config/home/packages.nix

31 lines
512 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# Desktop Applications
vesktop
obsidian
spotify
google-chrome
# Terminal applications
gh # github
easyeffects
hyfetch
nnn
# For Hyprland hotkeys:
brightnessctl
playerctl
hyprshot
polkit_gnome
# nix-tools
nix-index
nix-output-monitor
nil
# Dev Things
vscode
];
nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
}