38 lines
687 B
Nix
38 lines
687 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Desktop Applications
|
|
vesktop
|
|
obsidian
|
|
spotify
|
|
google-chrome
|
|
signal-desktop
|
|
element-desktop
|
|
# bitwarden-desktop -- currently does not build
|
|
|
|
# Terminal applications
|
|
gh # github
|
|
easyeffects
|
|
hyfetch
|
|
nnn
|
|
|
|
# For Hyprland hotkeys:
|
|
brightnessctl
|
|
playerctl
|
|
hyprshot
|
|
polkit_gnome
|
|
|
|
# nix-tools
|
|
nix-index
|
|
nix-output-monitor
|
|
nil
|
|
nh
|
|
|
|
# Dev Things
|
|
vscode
|
|
jetbrains.idea-ultimate
|
|
jetbrains.pycharm-professional
|
|
jetbrains.jdk
|
|
];
|
|
nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
|
|
}
|