mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-25 02:03:51 -08:00
24 lines
524 B
Nix
Executable file
24 lines
524 B
Nix
Executable file
{ pkgs, ... }: {
|
|
# Audio effects and EQ tool
|
|
services.easyeffects.enable = true;
|
|
services.easyeffects.package = pkgs.easyeffects;
|
|
|
|
# Notification daemon
|
|
services.dunst = {
|
|
enable = true;
|
|
catppuccin.enable = true;
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.papirus-icon-theme;
|
|
size = "32x32";
|
|
};
|
|
};
|
|
|
|
# Currently non-functional
|
|
programs.wlogout.enable = true;
|
|
programs.rofi = {
|
|
enable = true;
|
|
package = pkgs.rofi-wayland;
|
|
theme = "gruvbox-dark";
|
|
};
|
|
}
|