Updated things

This commit is contained in:
Tyler Mayoff 2024-12-12 09:39:39 -05:00
parent f35f2a877c
commit 06f054fc3c
6 changed files with 54 additions and 54 deletions

View file

@ -28,7 +28,7 @@
outputs.overlays.modifications
outputs.overlays.unstable-packages
inputs.helix.overlays.default
# inputs.helix.overlays.default
];
};
@ -77,7 +77,7 @@
programs.helix = {
enable = true;
package = inputs.helix.packages.${pkgs.system}.default;
# package = inputs.helix.packages.${pkgs.system}.default;
};
programs.bat = {

View file

@ -8,6 +8,7 @@
fish_add_path $HOME/.local/bin
fish_add_path /opt/homebrew/bin
fish_add_path /opt/homebrew/opt/llvm/bin
if test -e $HOME/.config/fish/variables-$(hostname)fish
source $HOME/.config/fish/variables-$(hostname).fish

View file

@ -8,7 +8,7 @@
# sha256 = "1w80vjcnaysjlzxsp3v4pxq4yswbjvxs8ann2bk0m7rkjljnzz6m";
# };
# mac-app-util = import mac-app-util-src {};
in {
in rec {
imports = [
../common.nix
../kitty.nix
@ -20,5 +20,21 @@ in {
home.packages = with pkgs; [
bazel_7
cmake
# clang-tools
cmake-language-server
jdt-language-server
ffmpeg
sccache
just
yarn
cocoapods
# android-tools
jdk17
];
home.sessionVariables = {
ANDROID_HOME="/Users/tyler.mayoff/Library/Android/sdk";
PATH="$PATH:/Users/tyler.mayoff/Library/Android/sdk/platform-tools";
};
}

View file

@ -1,4 +1,8 @@
{pkgs, config, ...}: {
{
pkgs,
config,
...
}: {
programs.kitty = {
enable = true;
package = config.lib.nixGL.wrap pkgs.kitty;
@ -11,6 +15,19 @@
disable_ligatures = "cursor";
};
extraConfig = ''
map super+1 goto_tab 1
map super+2 goto_tab 2
map super+3 goto_tab 3
map super+4 goto_tab 4
map super+5 goto_tab 5
map super+6 goto_tab 6
map super+7 goto_tab 7
map super+8 goto_tab 8
map super+9 goto_tab 9
map super+0 goto_tab 10
'';
themeFile = "Catppuccin-Macchiato";
};
}