diff --git a/.dotbot.conf.yaml b/.dotbot.conf.yaml index bc4bcd9..5798cda 100644 --- a/.dotbot.conf.yaml +++ b/.dotbot.conf.yaml @@ -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 diff --git a/Brewfile b/Brewfile index 7ccef70..004b1bf 100644 --- a/Brewfile +++ b/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. diff --git a/nix/home/default.nix b/nix/home/default.nix index 1f63568..ee67e88 100644 --- a/nix/home/default.nix +++ b/nix/home/default.nix @@ -21,6 +21,7 @@ in ./oatmeal ./ripgrep ./ruby + ./sesh ./skhd ./yabai ./yazi diff --git a/nix/home/sesh/default.nix b/nix/home/sesh/default.nix new file mode 100644 index 0000000..28f5b01 --- /dev/null +++ b/nix/home/sesh/default.nix @@ -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 ]; +} diff --git a/sesh/scripts/node_dev b/nix/home/sesh/scripts/node_dev similarity index 100% rename from sesh/scripts/node_dev rename to nix/home/sesh/scripts/node_dev diff --git a/sesh/scripts/open_files b/nix/home/sesh/scripts/open_files similarity index 100% rename from sesh/scripts/open_files rename to nix/home/sesh/scripts/open_files diff --git a/sesh/sesh.toml b/nix/home/sesh/sesh.toml similarity index 100% rename from sesh/sesh.toml rename to nix/home/sesh/sesh.toml