diff --git a/nixos/gui.nix b/nixos/gui.nix index 3458edaa..51fb474c 100644 --- a/nixos/gui.nix +++ b/nixos/gui.nix @@ -15,6 +15,7 @@ (wine.override { wineBuild = "wineWow"; }) winetricks steam kicad-with-packages3d + unstable.qemu unstable.aqemu ]; } diff --git a/nixos/programs/zsh.nix b/nixos/programs/zsh.nix index 4277e0b8..5de31ce9 100644 --- a/nixos/programs/zsh.nix +++ b/nixos/programs/zsh.nix @@ -63,4 +63,8 @@ }; shellAliases = { tmate = "tmux detach-client -E 'tmate;tmux'"; cat = "bat -p"; }; }; + programs.direnv = { + enable = true; + enableZshIntegration = true; + }; }