more colors

This commit is contained in:
2023-06-10 14:43:40 -04:00
parent 531e70cb4b
commit 648f001564
5 changed files with 115 additions and 79 deletions

View File

@@ -3,6 +3,7 @@ pkgs:
enable = true; enable = true;
shellAliases = { shellAliases = {
nsh = "nix-shell --command fish"; nsh = "nix-shell --command fish";
cd = "z";
}; };
# interactiveShellInit = '' # interactiveShellInit = ''
# function fish_prompt # function fish_prompt

View File

@@ -0,0 +1,3 @@
pkgs: {
enable = true;
}

View File

@@ -1,4 +1,4 @@
{ pkgs: {
enable = true; enable = true;
settings = { settings = {
add_newline = false; add_newline = false;
@@ -12,9 +12,17 @@
nix_shell.symbol = " "; nix_shell.symbol = " ";
nodejs.symbol = " "; nodejs.symbol = " ";
package.disabled = true; package.disabled = true;
palette = "catppuccin_macchiato";
python.symbol = " "; python.symbol = " ";
package.symbol = " "; package.symbol = " ";
rust.symbol = " "; rust.symbol = " ";
shell.disabled = false; shell.disabled = false;
}; } // builtins.fromTOML (builtins.readFile
(pkgs.fetchFromGitHub
{
owner = "catppuccin";
repo = "starship";
rev = "3e3e54410c3189053f4da7a7043261361a1ed1bc"; # Replace with the latest commit hash
sha256 = "soEBVlq3ULeiZFAdQYMRFuswIIhI9bclIU8WXjxd7oY=";
} + /palettes/macchiato.toml));
} }

View File

@@ -1,11 +1,13 @@
{ pkgs: {
baseIndex = 1; baseIndex = 1;
clock24 = true; clock24 = true;
enable = true; enable = true;
escapeTime = 0; escapeTime = 0;
keyMode = "vi"; keyMode = "vi";
mouse = true; mouse = true;
plugins = [pkgs.tmuxPlugins.catppuccin];
shortcut = "Space"; shortcut = "Space";
tmuxinator.enable = true;
extraConfig = '' extraConfig = ''
bind-key -T copy-mode-vi 'v' send -X begin-selection bind-key -T copy-mode-vi 'v' send -X begin-selection
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel

View File

@@ -1,87 +1,109 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
# Home Manager needs a bit of information about you and the # Home Manager needs a bit of information about you and the
# paths it should manage. # paths it should manage.
home.username = "jfrikker"; home.username = "jfrikker";
home.homeDirectory = "/Users/jfrikker"; home.homeDirectory = "/Users/jfrikker";
home.sessionVariables.TEST = "foo"; home.sessionVariables.BAT_THEME = "catppuccin-macchiato";
home.sessionVariables.RUST_SRC_PATH = "${pkgs.rust-bin.stable."1.68.0".rust-src}/lib/rustlib/src/rust/library"; home.sessionVariables.EDITOR = "nvim";
home.sessionVariables.BAT_THEME = "catppuccin-macchiato"; home.sessionVariables.RUST_SRC_PATH = "${pkgs.rust-bin.stable."1.68.0".rust-src}/lib/rustlib/src/rust/library";
home.packages = [ xdg.enable = true;
# pkgs.apacheKafka xdg.configFile."k9s/skin.yml" = {
pkgs.aria enable = true;
pkgs.aws-iam-authenticator source = pkgs.fetchFromGitHub {
pkgs.awscli owner = "catppuccin";
pkgs.bashInteractive repo = "k9s";
# pkgs.emacs rev = "322598e19a4270298b08dc2765f74795e23a1615"; # Replace with the latest commit hash
pkgs.fd sha256 = "GrRCOwCgM8BFhY8TzO3/WDTUnGtqkhvlDWE//ox2GxI=";
pkgs.fend } + /dist/macchiato.yml;
# pkgs.ghc };
# pkgs.go
# pkgs.haskellPackages.cabal-install
# pkgs.haskellPackages.haskell-language-server
pkgs.httpie
# pkgs.inconsolata-nerdfont
pkgs.jdt-language-server
pkgs.just
pkgs.jsonnet
pkgs.kubectl
pkgs.maven
pkgs.mysql-client
# pkgs.neovide
pkgs.neovim
pkgs.nodejs-16_x
pkgs.nodePackages.typescript-language-server
pkgs.postgresql
pkgs.ripgrep
# pkgs.rlwrap
# pkgs.rust-analyzer
pkgs.rust-script
pkgs.rust-bin.stable."1.68.0".default
pkgs.rust-bin.stable."1.68.0".rust-analyzer
# pkgs.rustup
# pkgs.sbcl
# pkgs.source-code-pro
pkgs.tokei
# pkgs.xonsh
pkgs.yarn
# pkgs.zellij
];
# This value determines the Home Manager release that your xdg.configFile."lazygit/config.yml" = {
# configuration is compatible with. This helps avoid breakage enable = true;
# when a new Home Manager release introduces backwards source = pkgs.fetchFromGitHub
# incompatible changes. {
# owner = "catppuccin";
# You can update Home Manager without changing this value. See repo = "lazygit";
# the Home Manager release notes for a list of state version rev = "b2ecb6d41b6f54a82104879573c538e8bdaeb0bf"; # Replace with the latest commit hash
# changes in each release. sha256 = "9BBmWRcjNaJE9T0RKVEJaSnkrbMom0CLYE8PzAT6yFw=";
home.stateVersion = "22.05"; } + /themes/macchiato.yml;
};
# Let Home Manager install and manage itself. home.packages = [
programs.home-manager.enable = true; # pkgs.apacheKafka
pkgs.aria
pkgs.aws-iam-authenticator
pkgs.awscli
pkgs.bashInteractive
# pkgs.emacs
pkgs.fd
pkgs.fend
# pkgs.ghc
# pkgs.go
# pkgs.haskellPackages.cabal-install
# pkgs.haskellPackages.haskell-language-server
pkgs.httpie
# pkgs.inconsolata-nerdfont
pkgs.jdt-language-server
pkgs.just
pkgs.jsonnet
pkgs.kubectl
pkgs.maven
pkgs.mysql-client
# pkgs.neovide
pkgs.neovim
pkgs.nodejs-16_x
pkgs.nodePackages.typescript-language-server
pkgs.postgresql
pkgs.ripgrep
# pkgs.rlwrap
# pkgs.rust-analyzer
pkgs.rust-script
pkgs.rust-bin.stable."1.68.0".default
pkgs.rust-bin.stable."1.68.0".rust-analyzer
# pkgs.rustup
# pkgs.sbcl
# pkgs.source-code-pro
pkgs.tokei
# pkgs.xonsh
pkgs.yarn
# pkgs.zellij
];
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "22.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
programs.bash.enable = true; programs.bash.enable = true;
programs.bat = import ./home-bat.nix pkgs; programs.bat = import ./home-bat.nix pkgs;
programs.btop.enable = true; programs.btop.enable = true;
programs.exa = import ./home-exa.nix; programs.exa = import ./home-exa.nix;
programs.fish = import ./home-fish.nix pkgs; programs.fish = import ./home-fish.nix pkgs;
programs.fzf = import ./home-fzf.nix; programs.fzf = import ./home-fzf.nix;
# programs.gh.enable = true; # programs.gh.enable = true;
programs.git.enable = true; programs.git.enable = true;
programs.git.delta.enable = true; programs.git.delta.enable = true;
programs.java.enable = true; programs.java.enable = true;
programs.java.package = pkgs.jdk17; programs.java.package = pkgs.jdk17;
programs.jq.enable = true; programs.jq.enable = true;
programs.k9s.enable = true; programs.k9s.enable = true;
programs.lazygit.enable = true; programs.lazygit.enable = true;
programs.starship = import ./home-starship.nix; programs.starship = import ./home-starship.nix pkgs;
programs.tmux = import ./home-tmux.nix; programs.tmux = import ./home-tmux.nix pkgs;
programs.zoxide.enable = true; programs.zoxide.enable = true;
# programs.neovim = import ./home-neovim.nix pkgs; # programs.neovim = import ./home-neovim.nix pkgs;
} }