Skip to content

Commit

Permalink
Init kitty terminal config
Browse files Browse the repository at this point in the history
  • Loading branch information
foofrog committed Jun 26, 2024
1 parent f4e568c commit 124b7c6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
2 changes: 0 additions & 2 deletions modules/environment/users/foo/home-depot/packages/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
kitty

bat
bottom
eza
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
imports = [
./helix.nix
./nushell.nix
./kitty.nix
./xdg.nix
];
gtk = {
Expand Down
22 changes: 22 additions & 0 deletions modules/environment/users/foo/home-depot/programs/kitty.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{...}: {
programs.kitty = {
enable = true;

font = {
name = "0xProto Nerd Font";
size = 12; # in pts
};

theme = "Cyberpunk Neon";

settings = {
enable_audio_bell = false;

disable_ligatures = "never";
};

extraConfig = ''
include current-theme.conf
'';
};
}
5 changes: 3 additions & 2 deletions modules/environment/users/foo/home-depot/programs/nushell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ _: {
# };

extraEnv = ''
# Disable Nushell welcome message
$env.config = {
show_banner: false,
show_banner: false, # Disable welcome message
}
'';
};
Expand Down Expand Up @@ -73,6 +72,8 @@ _: {
renamed = "r";
deleted = "x";
};

battery.disabled = true;
};
};

Expand Down

0 comments on commit 124b7c6

Please sign in to comment.