From c404df8f227029f0727699935d9a9f8793a87184 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 30 Jul 2024 08:04:30 +0200 Subject: [PATCH] feat(horsch): add qemu --- horsch.nix | 2 ++ horsch/qemu.nix | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 horsch/qemu.nix 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 + ]; +}