mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate sesh
This commit is contained in:
@@ -14,7 +14,6 @@
|
||||
~/.config/gh-dash/config.yml: github/gh-dash/config.yml
|
||||
~/.config/gh/config.yml: github/gh/config.yml
|
||||
~/.config/nvim: nvim
|
||||
~/.config/sesh: sesh
|
||||
~/.config/sketchybar: sketchybar
|
||||
~/.config/starship.toml: prompt/starship.toml
|
||||
~/.config/tmux/tmux-nerd-font-window-name.yml: tmux/tmux-nerd-font-window-name.yml
|
||||
|
||||
3
Brewfile
3
Brewfile
@@ -11,7 +11,6 @@ tap "homebrew/command-not-found"
|
||||
tap "homebrew/services"
|
||||
tap "jakehilborn/jakehilborn"
|
||||
tap "jondot/tap"
|
||||
tap "joshmedeski/sesh"
|
||||
tap "koekeishiya/formulae"
|
||||
tap "ms-jpq/sad"
|
||||
tap "oven-sh/bun"
|
||||
@@ -428,8 +427,6 @@ brew "fsouza/prettierd/prettierd"
|
||||
brew "jakehilborn/jakehilborn/displayplacer"
|
||||
# The scalable code generator that saves you time.
|
||||
brew "jondot/tap/hygen"
|
||||
# Smart terminal session manager
|
||||
brew "joshmedeski/sesh/sesh"
|
||||
# Simple hotkey-daemon for macOS.
|
||||
brew "koekeishiya/formulae/skhd"
|
||||
# A tiling window manager for macOS based on binary space partitioning.
|
||||
|
||||
@@ -21,6 +21,7 @@ in
|
||||
./oatmeal
|
||||
./ripgrep
|
||||
./ruby
|
||||
./sesh
|
||||
./skhd
|
||||
./yabai
|
||||
./yazi
|
||||
|
||||
11
nix/home/sesh/default.nix
Normal file
11
nix/home/sesh/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.file = {
|
||||
".config/sesh/sesh.toml" = { source = ./sesh.toml; };
|
||||
".config/sesh/scripts/node_dev" = { source = ./scripts/node_dev; };
|
||||
".config/sesh/scripts/open_files" = { source = ./scripts/open_files; };
|
||||
};
|
||||
|
||||
home.packages = [ pkgs.sesh ];
|
||||
}
|
||||
Reference in New Issue
Block a user