9 lines
192 B
Nix
9 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"
|
||
|
'';
|
||
|
}
|