feat(nix): migrate sesh

This commit is contained in:
Stefan Imhoff
2024-07-13 12:00:45 +02:00
parent 21201b31a0
commit 6184c32ad4
7 changed files with 12 additions and 4 deletions

View File

@@ -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

View File

@@ -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.

View File

@@ -21,6 +21,7 @@ in
./oatmeal
./ripgrep
./ruby
./sesh
./skhd
./yabai
./yazi

11
nix/home/sesh/default.nix Normal file
View 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 ];
}