Remove some spare files

This commit is contained in:
Hunter Haugen 2025-12-29 13:06:56 -08:00
parent f9250db3d8
commit 93045ff863
Signed by: hunner
GPG key ID: EF99694AA599DDAD
3 changed files with 10 additions and 231 deletions

10
qemu/shell.nix Normal file
View file

@ -0,0 +1,10 @@
let
pkgs = import <nixpkgs> { config.allowUnfree = true; };
#unstable = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz") {
# config.allowUnfree = true;
#};
in pkgs.mkShell {
packages = with pkgs; [
qemu
];
}