Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update from zsh.initExtra to zsh.initContent leftovers

+2 -2
+1 -1
home/apps/wezterm/default.nix
··· 29 29 config = mkIf (cfg.enable && cfg.wezterm.enable) { 30 30 home.packages = [ wezterm ]; 31 31 xdg.configFile."wezterm/wezterm.lua".text = configStr; 32 - programs.zsh.initExtra = shellIntegrationStr; 32 + programs.zsh.initContent = shellIntegrationStr; 33 33 }; 34 34 }
+1 -1
home/base/gpg.nix
··· 34 34 systemd.user.services.gpg-agent.Service.Slice = "session.slice"; 35 35 36 36 # See: https://github.com/nix-community/home-manager/pull/5901 37 - programs.zsh.initExtra = let 37 + programs.zsh.initContent = let 38 38 gpgPkg = config.programs.gpg.package; 39 39 in optionalString helpers.isDarwin '' 40 40 ${gpgPkg}/bin/gpg-connect-agent --quiet updatestartuptty /bye > /dev/null 2>&1