mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-01-18 17:11:39 +01:00
don't show cats on non-thinkpad hosts
This commit is contained in:
parent
0677beb1c0
commit
4baf1371b7
4 changed files with 13 additions and 7 deletions
12
flake.lock
12
flake.lock
|
@ -23,11 +23,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1682535786,
|
||||
"narHash": "sha256-NH2a8yB8V25cglvcHDrvaTLvohzMgGLLZ4vnXQn4vOw=",
|
||||
"lastModified": 1682663009,
|
||||
"narHash": "sha256-i5ZDuY5kUBDwbWFUludL2cm6PBb6oj245qTFXSpOkdo=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "d82c9af8175878a461a0fdf914e67cc446664570",
|
||||
"rev": "43ba4489bd3f9f69519f5f7ebdb76d0455eccbbe",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
@ -46,11 +46,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1682548480,
|
||||
"narHash": "sha256-aycGKS+Vv/lQQFaYJNpK054leLKIapfUobgzt8fohFA=",
|
||||
"lastModified": 1682603803,
|
||||
"narHash": "sha256-NY9nVAdB7UyInu2vPx/DIUVNZ83t4RdP16QY9DTIn4s=",
|
||||
"owner": "hyprwm",
|
||||
"repo": "Hyprland",
|
||||
"rev": "72d2f33b34951b7f5be6cdbc302b1c6a33cbf60f",
|
||||
"rev": "f23455e592bca14e0abd9249de467cc71cd2850e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -49,7 +49,10 @@
|
|||
prompt_dir() {
|
||||
prompt_segment blue $CURRENT_FG '%c'
|
||||
}
|
||||
cat ${../images/cat.sixel}
|
||||
if [[ "$(hostname)" == "thinkpad" ]]
|
||||
then
|
||||
cat ${../images/cat.sixel}
|
||||
fi
|
||||
'';
|
||||
|
||||
# Hacky way to bind Ctrl+R to fzf. Otherwise it will be overridden
|
||||
|
|
|
@ -60,6 +60,8 @@
|
|||
gdb
|
||||
|
||||
powerline-fonts
|
||||
# password
|
||||
pass
|
||||
|
||||
# libs
|
||||
libyubikey
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
''
|
||||
set -g default-shell ${pkgs.zsh}/bin/zsh
|
||||
bind P display-popup
|
||||
set -sg escape-time 10
|
||||
'';
|
||||
plugins = with pkgs.tmuxPlugins; [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue