nix-config/home/packages.nix
2024-10-16 15:06:09 +02:00

29 lines
486 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# Desktop Applications
vesktop
obsidian
spotify
# Terminal applications
gh # github
easyeffects
hyfetch
# 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";
}