Skip to content

Commit

Permalink
chore(nix): switch qemu-full to qemu (#133)
Browse files Browse the repository at this point in the history
Apparently, the only difference between `qemu-full` and `qemu` is that
"full" enables ceph, smbd, and glusterfs support (see
https://twitter.com/witchof0x20/status/1477412443777294344?s=20). We
don't need any of that stuff; I had added `qemu-full` to the dev
nix-shell environment because I foolishly assumed "full" meant "all
architectures" or something.

This commit switches our `shell.nix` to just depend on `qemu` instead,
so we don't pull in all this other stuff we don't need.
  • Loading branch information
hawkw authored Jan 1, 2022
1 parent 91a737c commit 88c3984
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let env = (import ./default.nix scope);

in pkgs.mkShell {
# also install qemu into the dev shell, for testing
packages = with pkgs; [ qemu_full gdb direnv ];
packages = with pkgs; [ qemu gdb direnv ];

LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
LC_ALL = "en_US.UTF-8";
Expand Down

0 comments on commit 88c3984

Please sign in to comment.