29 lines
486 B
Nix
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";
|
|
}
|