diff --git a/home/.chezmoiexternal.toml b/home/.chezmoiexternal.toml index f4852bde..d0aeb73a 100644 --- a/home/.chezmoiexternal.toml +++ b/home/.chezmoiexternal.toml @@ -15,16 +15,16 @@ url = "https://github.com/wbthomason/packer.nvim.git" refreshPeriod = "168h" +[".tmux/plugins/tpm"] + type = "git-repo" + url = "https://github.com/tmux-plugins/tpm" + refreshPeriod = "168h" + [".task"] type = "git-repo" url = "git@github.com:starr-dusT/task.git" refreshPeriod = "168h" -["documents/zet"] - type = "git-repo" - url = "git@github.com:starr-dusT/zet.git" - refreshPeriod = "168h" - ### OLD ### #[".config/xmonad/xmonad"] # type = "git-repo" diff --git a/home/dot_config/alacritty/alacritty.yml b/home/dot_config/alacritty/alacritty.yml index 4ebf5459..50a974c9 100644 --- a/home/dot_config/alacritty/alacritty.yml +++ b/home/dot_config/alacritty/alacritty.yml @@ -13,6 +13,13 @@ env: # `infocmp xterm-256color`. TERM: xterm-256color +shell: + program: /run/current-system/sw/bin/bash + args: + - -l + - -c + - "tmux" + # Font configuration (changes require restart) font: # Normal (roman) font face diff --git a/home/dot_tmux.conf b/home/dot_tmux.conf index e629209f..473f6e4b 100644 --- a/home/dot_tmux.conf +++ b/home/dot_tmux.conf @@ -92,3 +92,11 @@ set -g visual-activity on # Allow the arrow key to be used immediately after changing windows set-option -g repeat-time 0 + +# Install plugin manager +set -g @plugin 'fcsonline/tmux-thumbs' +run-shell ~/.tmux/plugins/tmux-thumbs/tmux-thumbs.tmux + +# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) +set -g @plugin 'tmux-plugins/tpm' +run '~/.tmux/plugins/tpm/tpm' diff --git a/provision/hosts/bulwark/syncthing.nix b/provision/hosts/bulwark/syncthing.nix index da7345e8..ab8ccc2a 100644 --- a/provision/hosts/bulwark/syncthing.nix +++ b/provision/hosts/bulwark/syncthing.nix @@ -24,6 +24,10 @@ path = "/home/${user}/.local/share/yuzu/nand/user/save/0000000000000000/705C6CE0127692D598F92E68B640D644"; devices = [ "kestrel" ]; }; + "PSP Saves" = { + path = "/home/${user}/.config/ppsspp/PSP/SAVEDATA"; + devices = [ "kestrel" ]; + }; }; }; } diff --git a/provision/hosts/kestrel/syncthing.nix b/provision/hosts/kestrel/syncthing.nix index f2f9fadb..0ea8aa21 100644 --- a/provision/hosts/kestrel/syncthing.nix +++ b/provision/hosts/kestrel/syncthing.nix @@ -25,6 +25,10 @@ path = "/home/${user}/.local/share/yuzu/nand/user/save/0000000000000000/705C6CE0127692D598F92E68B640D644"; devices = [ "bulwark" ]; }; + "PSP Saves" = { + path = "/home/${user}/.config/ppsspp/PSP/SAVEDATA"; + devices = [ "bulwark" ]; + }; }; }; } diff --git a/provision/modules/gaming/steam.nix b/provision/modules/gaming/steam.nix index 2020a057..02af7192 100644 --- a/provision/modules/gaming/steam.nix +++ b/provision/modules/gaming/steam.nix @@ -19,6 +19,7 @@ in { pkgs.steamtinkerlaunch pkgs-unstable.yuzu-early-access pkgs.dolphin-emu + pkgs-unstable.ppsspp pkgs-unstable.sunshine pkgs-unstable.moonlight-qt ]; diff --git a/provision/modules/system/terminal.nix b/provision/modules/system/terminal.nix index 11226f45..6bfe6b73 100644 --- a/provision/modules/system/terminal.nix +++ b/provision/modules/system/terminal.nix @@ -41,5 +41,6 @@ in { pkgs-unstable.taskwarrior-tui pkgs-unstable.timewarrior ]; + }; }