nix/home-manager/common/desktops/gnome/default.nix

17 lines
383 B
Nix
Raw Normal View History

2023-09-29 07:09:58 +02:00
# Generated via dconf2nix: https://github.com/gvolpe/dconf2nix
2025-01-06 19:28:51 +01:00
{ ... }: {
2025-01-05 23:06:45 +01:00
imports = [
2025-01-06 19:28:51 +01:00
./dconf.nix
2025-01-06 22:12:00 +01:00
# TODO Re-eanble this when in hm 24.11
# ../../software/gui/ghostty.nix
2025-01-05 23:06:45 +01:00
];
programs.bash.sessionVariables = {
DISABLE_TMUX = "true";
GTK_THEME = "Breeze"; # To set the firefox theme
};
programs.fish.shellInit = ''
set DISABLE_TMUX "true"
'';
}