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

22 lines
418 B
Nix
Raw Normal View History

2024-08-05 20:31:34 +02:00
{ pkgs, ... }:
{
2023-12-02 00:46:56 +01:00
imports = [
./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-07-26 20:18:26 +02:00
gtk.enable = true;
2024-05-01 04:35:50 +02:00
gtk.iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus";
};
2024-08-26 17:38:47 +02:00
# Bigger text in qt apps
home.sessionVariables.QT_SCREEN_SCALE_FACTORS = 1.4;
}