This commit is contained in:
albert 2024-04-30 14:50:22 +09:00
parent b5d375a87c
commit 3af8461700
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A
2 changed files with 2 additions and 7 deletions

View file

@ -13,7 +13,6 @@
# nixvim - neovim configuration management in nix
nixvim.url = "github:nix-community/nixvim/nixos-23.11";
nixvim.inputs.nixpkgs.follows = "nixpkgs";
# lanzaboote - Secureboot Configuration
lanzaboote.url = "github:nix-community/lanzaboote";
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";

View file

@ -7,12 +7,8 @@
interactiveShellInit = ''
set EDITOR vim
ssh-add > /dev/null &> /dev/null
if set -q TMUX
else
if set -q DISABLE_TMUX
else
tmux attach || exec tmux new-session && exit
end
if not set -q TMUX && not set -q DISABLE_TMUX
exec tmux attach || exec tmux new-session
end
'';