feat: add spotify

This commit is contained in:
EinEtwas 2024-10-16 15:06:09 +02:00
parent db3a6f4ccd
commit ffb93ab6b1

View file

@ -1,9 +1,12 @@
{ pkgs, nixpkgs, home-manager, ... }: { pkgs, ... }:
{ {
home.packages = with pkgs; [ home.packages = with pkgs; [
# Desktop Applications
vesktop vesktop
obsidian obsidian
polkit_gnome spotify
# Terminal applications
gh # github gh # github
easyeffects easyeffects
hyfetch hyfetch
@ -12,14 +15,15 @@
brightnessctl brightnessctl
playerctl playerctl
hyprshot hyprshot
polkit_gnome
# to better find execs # nix-tools
nix-index nix-index
nix-output-monitor nix-output-monitor
expect # for the unbuffer command
vscode
nil nil
# Dev Things
vscode
]; ];
nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland"; nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
} }