Added: Qemu
This commit is contained in:
parent
dc265d2f71
commit
d1e22cca12
@ -23,6 +23,7 @@
|
||||
../../modules/python.nix
|
||||
../../modules/appimage.nix
|
||||
../../modules/qemu.nix
|
||||
../../modules/geary.nix
|
||||
# Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
@ -47,7 +48,7 @@
|
||||
|
||||
defaultGateway = {
|
||||
address = "192.168.2.1";
|
||||
interface = "eth0";
|
||||
interface = "eno1";
|
||||
};
|
||||
|
||||
nameservers = [
|
||||
|
4
modules/geary.nix
Normal file
4
modules/geary.nix
Normal file
@ -0,0 +1,4 @@
|
||||
{ pkgs, ...}:
|
||||
{
|
||||
programs.geary.enable = true;
|
||||
}
|
@ -1,6 +1,9 @@
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = [ pkgs.qemu ];
|
||||
environment.systemPackages = with pkgs; [
|
||||
qemu
|
||||
quickemu
|
||||
];
|
||||
systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ];
|
||||
boot.binfmt.emulatedSystems = [
|
||||
"aarch64-linux"
|
||||
|
Loading…
Reference in New Issue
Block a user