diff --git a/horsch.nix b/horsch.nix index 68a3050..9769b64 100644 --- a/horsch.nix +++ b/horsch.nix @@ -19,5 +19,7 @@ ./horsch/ssh.nix ./horsch/zsh.nix + + ./horsch/qemu.nix ]; } diff --git a/horsch/qemu.nix b/horsch/qemu.nix new file mode 100644 index 0000000..568212a --- /dev/null +++ b/horsch/qemu.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + home.packages = with pkgs; [ + qemu + ]; +}