Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 54 additions & 58 deletions nix-darwin/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 1 addition & 10 deletions nix-darwin/home-modules/programs/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
};

config = lib.mkIf config.alacritty.enable {
# C-r history
# C-l clear
home = {
sessionVariables = {
TERMINAL = "alacritty";
Expand All @@ -24,15 +22,8 @@
programs = {
alacritty = {
enable = true;
catppuccin.enable = true;
shellIntegration.enableFishIntegration = true;
shellIntegration.enableZshIntegration = true;
font = {
size = 16;
name = "JetBrainsMono";
package = pkgs.nerd-fonts.jetbrains-mono;
};
};
};
catppuccin.alacritty.enable = true;
};
}
2 changes: 1 addition & 1 deletion nix-darwin/home-modules/programs/bat.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
config = lib.mkIf config.bat.enable {
programs.bat = {
enable = true;
catppuccin.enable = true;
};
catppuccin.bat.enable = true;
};
}
2 changes: 1 addition & 1 deletion nix-darwin/home-modules/programs/btop.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
config = lib.mkIf config.btop.enable {
programs.btop = {
enable = true;
catppuccin.enable = true;
settings = {
theme_background = true;
};
};
catppuccin.btop.enable = true;
};
}
1 change: 1 addition & 0 deletions nix-darwin/home-modules/programs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
./flameshot.nix
./fuzzel.nix
./fzf.nix
./ghostty.nix
./git.nix
./k9s.nix
./keychain.nix
Expand Down
2 changes: 1 addition & 1 deletion nix-darwin/home-modules/programs/fish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
programs.fish = {
plugins = [ ];
enable = true;
# catppuccin.enable = true;
shellInit = ''
# set -x PATH $PATH $HOME/.npm-global/bin
set ENTERPRISE_REPO_PATH ~/knak
Expand Down Expand Up @@ -110,5 +109,6 @@
top = "btop";
};
};
catppuccin.fish.enable = true;
};
}
2 changes: 1 addition & 1 deletion nix-darwin/home-modules/programs/fzf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
programs = {
fzf = {
enable = true;
catppuccin.enable = true;
};
};
catppuccin.fzf.enable = true;
};
}
34 changes: 34 additions & 0 deletions nix-darwin/home-modules/programs/ghostty.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
pkgs,
lib,
config,
...
}:
{
options = {
ghostty.enable = lib.mkOption {
type = lib.types.bool;
description = "Enables ghostty shell";
default = true;
};
};

config = lib.mkIf config.ghostty.enable {
home = {
sessionVariables = {
# TERMINAL = "kitty";
};
};
programs = {
ghostty = {
enable = true;
enableFishIntegration = true;
enableZshIntegration = true;
settings = {
font-size = 16;
font-family = "JetBrainsMono";
};
};
};
};
}
Loading
Loading