feat(home): disable zellij zsh integration on home-server

This commit is contained in:
Felix Schröter 2024-04-30 23:41:01 +02:00
parent bca5bc2ab1
commit 23c7e0a811
Signed by: felschr
GPG key ID: 671E39E6744C807D

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, ... }:
{
imports = [ ./shell ./editors/lsp.nix ./editors/helix ./git.nix ];
@ -19,6 +19,8 @@
export SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/gnupg/S.gpg-agent.ssh
'';
programs.zellij.enableZshIntegration = lib.mkForce false;
programs.ssh.enable = true;
programs.git.defaultProfile = "private";