Skip to content

Commit

Permalink
update nix channels
Browse files Browse the repository at this point in the history
  • Loading branch information
Sathvik Birudavolu committed Jan 24, 2024
1 parent a86126d commit ca4dad6
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 64 deletions.
36 changes: 18 additions & 18 deletions flake.lock

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

87 changes: 42 additions & 45 deletions home/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@
shell = {
program = "${pkgs.fish}/bin/fish";
args = [ "-c" "${pkgs.tmux}/bin/tmux attach || ${pkgs.tmux}/bin/tmux" ];
env = {
"TERM" = "xterm-256color";
};
};

env = {
"TERM" = "xterm-256color";
};
window.startup_mode = "Fullscreen";

font = {
Expand All @@ -35,47 +34,8 @@
size = 15.0;
};

# Select the coloscheme
colors = kanagawa;

# Alabaster
# https://github.com/alacritty/alacritty-theme/blob/master/themes/alabaster.toml
alabaster = {
primary = {
background = "#F7F7F7";
foreground = "#434343";
};

cursor = {
text = "#F7F7F7";
cursor = "#434343";
};

normal = {
black = "#000000";
red = "#AA3731";
green = "#448C27";
yellow = "#CB9000";
blue = "#325CC0";
magenta = "#7A3E9D";
cyan = "#0083B2";
white = "#BBBBBB";
};

bright = {
black = "#777777";
red = "#F05050";
green = "#60CB00";
yellow = "#FFBC5D";
blue = "#007ACC";
magenta = "#E64CE6";
cyan = "#00AACB";
white = "#FFFFFF";
};
};

# Kanagawa Alacritty Colors
kanagawa = {
# Kanagawa Alacritty Colors (Dark Mode)
colors = {
primary = {
background = "0x1f1f28";
foreground = "0xdcd7ba";
Expand Down Expand Up @@ -108,6 +68,43 @@
foreground = "0xc8c093";
};
};

# Alabaster (Light Mode)
# https://github.com/alacritty/alacritty-theme/blob/master/themes/alabaster.toml

# colors = {
# primary = {
# background = "#F7F7F7";
# foreground = "#434343";
# };
#
# cursor = {
# text = "#F7F7F7";
# cursor = "#434343";
# };
#
# normal = {
# black = "#000000";
# red = "#AA3731";
# green = "#448C27";
# yellow = "#CB9000";
# blue = "#325CC0";
# magenta = "#7A3E9D";
# cyan = "#0083B2";
# white = "#BBBBBB";
# };
#
# bright = {
# black = "#777777";
# red = "#F05050";
# green = "#60CB00";
# yellow = "#FFBC5D";
# blue = "#007ACC";
# magenta = "#E64CE6";
# cyan = "#00AACB";
# white = "#FFFFFF";
# };
# };
};
}
# vim: foldmethod=marker
6 changes: 5 additions & 1 deletion home/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@
plugins = with pkgs; [
tmuxPlugins.cpu
tmuxPlugins.extrakto
{
plugin = tmuxPlugins.tmux-thumbs;
extraConfig = "set -g @thumbs-command 'echo -n {} | pbcopy'";
}
{
plugin = tmuxPlugins.resurrect;
extraConfig = "set -g @resurrect-strategy-nvim 'session'";
Expand Down Expand Up @@ -127,7 +131,7 @@
# Kensho stuff
inherit (pkgs)
aws-iam-authenticator
jsonnet# ships with jsonnetfmt
go-jsonnet#ships with jsonnetfmt (issue with `jsonnet` build)
jrsonnet# is _blazingling_ fast
okta-aws-cli
postgresql_15# Required for psql
Expand Down

0 comments on commit ca4dad6

Please sign in to comment.