1
Fork 0
satellite/home/features/desktop/default.nix

18 lines
339 B
Nix
Raw Normal View History

2024-05-01 04:35:50 +02:00
{ pkgs, ... }: {
2023-12-02 00:46:56 +01:00
imports = [
./wezterm # terminal
./dunst.nix # notifaction handler
];
# Notifies on low battery percentages
services.batsignal.enable = true;
# Use a base16 theme for gtk apps!
stylix.targets.gtk.enable = true;
2024-05-01 04:35:50 +02:00
gtk.iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus";
};
}