14 lines
336 B
Nix
14 lines
336 B
Nix
# Generated via dconf2nix: https://github.com/gvolpe/dconf2nix
|
|
{ lib, hostname, username, ... }: {
|
|
imports = [
|
|
./gnome-dconf.nix
|
|
];
|
|
programs.bash.sessionVariables = {
|
|
DISABLE_TMUX = "true";
|
|
GTK_THEME = "Breeze"; # To set the firefox theme
|
|
};
|
|
programs.fish.shellInit = ''
|
|
set DISABLE_TMUX "true"
|
|
'';
|
|
|
|
}
|