Fixes and additions
This commit is contained in:
parent
f19f3d8a45
commit
b4ba97b495
11 changed files with 59 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./dconf.nix
|
./dconf.nix
|
||||||
|
../../software/gui/ghostty.nix
|
||||||
];
|
];
|
||||||
programs.bash.sessionVariables = {
|
programs.bash.sessionVariables = {
|
||||||
DISABLE_TMUX = "true";
|
DISABLE_TMUX = "true";
|
||||||
|
|
22
home-manager/common/software/gui/ghostty.nix
Normal file
22
home-manager/common/software/gui/ghostty.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ theme, ... }: {
|
||||||
|
|
||||||
|
imports = [ ../../../../stylix/themes/${theme}/home-manager/ghostty.nix ];
|
||||||
|
|
||||||
|
programs.ghostty = {
|
||||||
|
enable = true;
|
||||||
|
enableBashIntegration = true;
|
||||||
|
enableFishIntegration = true;
|
||||||
|
enableZshIntegration = true;
|
||||||
|
installBatSyntax = true;
|
||||||
|
installVimSyntax = true;
|
||||||
|
settings = {
|
||||||
|
font-size = 10;
|
||||||
|
cursor-style = "bar";
|
||||||
|
keybind = [
|
||||||
|
"shift+right=next_tab"
|
||||||
|
"shift+left=previous_tab"
|
||||||
|
"shift+up=toggle_tab_overview"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
4
stylix/themes/default/home-manager/ghostty.nix
Normal file
4
stylix/themes/default/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "Ayu Mirage";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/green/home-manager/ghostty.nix
Normal file
4
stylix/themes/green/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "Ayu Mirage";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/gruvbox/home-manager/ghostty.nix
Normal file
4
stylix/themes/gruvbox/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "GruvboxDark";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/sakura-day/home-manager/ghostty.nix
Normal file
4
stylix/themes/sakura-day/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "catpuccin-latte";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/sakura-night/home-manager/ghostty.nix
Normal file
4
stylix/themes/sakura-night/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "sakura";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/stylix-day/home-manager/ghostty.nix
Normal file
4
stylix/themes/stylix-day/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "Ayu Mirage";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/stylix/home-manager/ghostty.nix
Normal file
4
stylix/themes/stylix/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "Ayu Mirage";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/tokyo-day/home-manager/ghostty.nix
Normal file
4
stylix/themes/tokyo-day/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "Ayu Mirage";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
4
stylix/themes/tokyo-night/home-manager/ghostty.nix
Normal file
4
stylix/themes/tokyo-night/home-manager/ghostty.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{ lib, ... }: {
|
||||||
|
programs.ghostty.settings.theme = lib.mkForce "tokyonight_night";
|
||||||
|
stylix.targets.ghostty.enable = false;
|
||||||
|
}
|
Loading…
Reference in a new issue