25 lines
469 B
Nix
25 lines
469 B
Nix
{ pkgs, nixpkgs, home-manager, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
vesktop
|
|
obsidian
|
|
polkit_gnome
|
|
gh # github
|
|
easyeffects
|
|
hyfetch
|
|
|
|
# For Hyprland hotkeys:
|
|
brightnessctl
|
|
playerctl
|
|
hyprshot
|
|
|
|
# to better find execs
|
|
nix-index
|
|
nix-output-monitor
|
|
expect # for the unbuffer command
|
|
|
|
vscode
|
|
nil
|
|
];
|
|
nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
|
|
}
|