Files
nix/hosts/homex/home.nix
Gustavo "Guz" L. de Mello 25660d75cf feat: home server configuration
2024-01-23 17:34:04 -03:00

22 lines
406 B
Nix

{ config, pkgs, inputs, ... }:
{
imports = [
../../modules/home-manager/programs/starship.nix
../../modules/home-manager/programs/tmux.nix
../../modules/home-manager/programs/zsh.nix
];
starship.enable = true;
starship.enableZsh = true;
tmux.enable = true;
tmux.shell = "\${pkgs.zsh}/bin/zsh";
zsh.enable = true;
zsh.extraConfig.init = ''
export GPG_TTY=$(tty)
'';
}