nix/stylix/themes/gruvbox/home-manager/plasma6.nix

21 lines
548 B
Nix
Raw Normal View History

2024-09-24 14:58:47 +02:00
{ lib, ... }: {
programs.bash.sessionVariables = {
GTK_THEME = lib.mkForce "Gruvbox-Dark"; # To set the firefox theme
};
2024-09-25 03:23:49 +02:00
programs.fish.shellInit = ''
2024-09-24 14:58:47 +02:00
set GTK_THEME "Gruvbox-Dark"
'';
services.darkman = {
darkModeScripts = {
apply-colorscheme-dark = lib.mkForce ''
/run/current-system/sw/bin/plasma-apply-colorscheme Gruvbox
'';
};
lightModeScripts = {
apply-colorscheme-light = lib.mkForce ''
/run/current-system/sw/bin/plasma-apply-colorscheme BreezeLight
'';
};
};
}