feat(horsch): add qemu

main
mandlm 2024-07-30 08:04:30 +02:00
parent 33f753e011
commit c404df8f22
Signed by: mandlm
GPG Key ID: 088ED38F036C7AF2
2 changed files with 9 additions and 0 deletions

View File

@ -19,5 +19,7 @@
./horsch/ssh.nix ./horsch/ssh.nix
./horsch/zsh.nix ./horsch/zsh.nix
./horsch/qemu.nix
]; ];
} }

7
horsch/qemu.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
qemu
];
}