remove wezterm from gnome, add gnome terminal back
This commit is contained in:
parent
23542ce3fd
commit
1ee69b31f2
4 changed files with 27 additions and 9 deletions
|
@ -18,5 +18,16 @@
|
|||
home.packages = with pkgs.gnomeExtensions; [
|
||||
appindicator
|
||||
];
|
||||
programs.gnome-terminal = {
|
||||
enable = true;
|
||||
profile = {
|
||||
"4621184a-b921-42cf-80a0-7784516606f2" = {
|
||||
default = true;
|
||||
audibleBell = false;
|
||||
allowBold = true;
|
||||
visibleName = "nezia";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -38,8 +38,7 @@
|
|||
end
|
||||
|
||||
return {
|
||||
front_end = "WebGpu",
|
||||
enable_wayland = false,
|
||||
enable_wayland = true,
|
||||
hide_tab_bar_if_only_one_tab = true,
|
||||
show_new_tab_button_in_tab_bar = false,
|
||||
harfbuzz_features = { "ss01", "ss03" },
|
||||
|
|
|
@ -29,6 +29,14 @@ in
|
|||
gnome-tweaks
|
||||
gnome-power-manager
|
||||
];
|
||||
stylix.fonts = {
|
||||
sansSerif = {
|
||||
package = pkgs.inter;
|
||||
name = "Intel Variable";
|
||||
};
|
||||
serif = config.stylix.fonts.sansSerif;
|
||||
sizes.desktop = 9;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -19,25 +19,25 @@ in
|
|||
size = 24;
|
||||
};
|
||||
fonts = {
|
||||
serif = {
|
||||
serif = lib.mkDefault {
|
||||
package = pkgs.noto-fonts;
|
||||
name = "Noto Serif";
|
||||
};
|
||||
sansSerif = {
|
||||
sansSerif = lib.mkDefault {
|
||||
package = pkgs.noto-fonts;
|
||||
name = "Noto Sans";
|
||||
};
|
||||
monospace = {
|
||||
package = pkgs.nerdfonts.override { fonts = [ "Monaspace" ]; };
|
||||
name = "MonaspiceNe Nerd Font Mono";
|
||||
monospace = lib.mkDefault {
|
||||
package = pkgs.intel-one-mono;
|
||||
name = "Intel One Mono";
|
||||
};
|
||||
emoji = {
|
||||
package = pkgs.noto-fonts-color-emoji;
|
||||
name = "Noto Color Emoji";
|
||||
};
|
||||
sizes = {
|
||||
sizes = lib.mkDefault {
|
||||
terminal = 14;
|
||||
applications = 12;
|
||||
applications = 14;
|
||||
desktop = 12;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue