From 10accd7b14527ad772e0cd3d3e308109d694d4d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Fri, 3 Jan 2020 10:18:37 +0000 Subject: [PATCH] add quemu and direnv --- nixos/gui.nix | 1 + nixos/programs/zsh.nix | 4 ++++ 2 files changed, 5 insertions(+) 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; + }; }