nix/stylix/themes/default/home-manager/plasma6.nix
2024-09-30 02:38:20 +02:00

8 lines
192 B
Nix

{ lib, ... }: {
programs.bash.sessionVariables = {
GTK_THEME = lib.mkForce "Breeze"; # To set the firefox theme
};
programs.fish.shellInit = ''
set GTK_THEME "Breeze"
'';
}