🎵 Cava desktop entry, Replaces node 20 with 22
This commit is contained in:
parent
fd8ca5a8c3
commit
760cb4d8df
@ -1,12 +0,0 @@
|
|||||||
## Audio visualizer
|
|
||||||
let
|
|
||||||
theme = import ../theme.nix;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
catppuccin.cava = {
|
|
||||||
enable = true;
|
|
||||||
flavor = theme.flavor;
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.cava.enable = true;
|
|
||||||
}
|
|
BIN
home-manager/cava/cava.png
Normal file
BIN
home-manager/cava/cava.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
29
home-manager/cava/default.nix
Normal file
29
home-manager/cava/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
## Audio visualizer
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
theme = import ../../theme.nix;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
catppuccin.cava = {
|
||||||
|
enable = true;
|
||||||
|
flavor = theme.flavor;
|
||||||
|
};
|
||||||
|
|
||||||
|
programs.cava = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.cava;
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.desktopEntries.cava = {
|
||||||
|
name = "Cava";
|
||||||
|
genericName = "Audio visualizer";
|
||||||
|
terminal = true;
|
||||||
|
exec = "${pkgs.cava}/bin/cava";
|
||||||
|
icon = ./cava.png;
|
||||||
|
categories = [
|
||||||
|
"Audio"
|
||||||
|
"AudioVideo"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
@ -13,7 +13,7 @@ in
|
|||||||
inputs.catppuccin.homeManagerModules.catppuccin
|
inputs.catppuccin.homeManagerModules.catppuccin
|
||||||
inputs.nixvim.homeManagerModules.nixvim
|
inputs.nixvim.homeManagerModules.nixvim
|
||||||
./btop.nix
|
./btop.nix
|
||||||
./cava.nix
|
./cava
|
||||||
./cursors.nix
|
./cursors.nix
|
||||||
./default-applications.nix
|
./default-applications.nix
|
||||||
./development
|
./development
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
dotnet-aspnetcore_9
|
dotnet-aspnetcore_9
|
||||||
git
|
git
|
||||||
rustup
|
rustup
|
||||||
nodejs
|
nodejs_22
|
||||||
pnpm
|
pnpm
|
||||||
gcc # Required for C, Rust and others
|
gcc # Required for C, Rust and others
|
||||||
# Language servers
|
# Language servers
|
||||||
|
Loading…
x
Reference in New Issue
Block a user