Updates
This commit is contained in:
parent
b5d375a87c
commit
3af8461700
2 changed files with 2 additions and 7 deletions
|
@ -13,7 +13,6 @@
|
||||||
# nixvim - neovim configuration management in nix
|
# nixvim - neovim configuration management in nix
|
||||||
nixvim.url = "github:nix-community/nixvim/nixos-23.11";
|
nixvim.url = "github:nix-community/nixvim/nixos-23.11";
|
||||||
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
nixvim.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
# lanzaboote - Secureboot Configuration
|
# lanzaboote - Secureboot Configuration
|
||||||
lanzaboote.url = "github:nix-community/lanzaboote";
|
lanzaboote.url = "github:nix-community/lanzaboote";
|
||||||
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
lanzaboote.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
|
@ -7,12 +7,8 @@
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
set EDITOR vim
|
set EDITOR vim
|
||||||
ssh-add > /dev/null &> /dev/null
|
ssh-add > /dev/null &> /dev/null
|
||||||
if set -q TMUX
|
if not set -q TMUX && not set -q DISABLE_TMUX
|
||||||
else
|
exec tmux attach || exec tmux new-session
|
||||||
if set -q DISABLE_TMUX
|
|
||||||
else
|
|
||||||
tmux attach || exec tmux new-session && exit
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue