-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial AudioVM implementation with pipewire and pulseaudio
Initial version of AudioVM with Pipewire backend and pulseaudio TCP remote communication layer for the guest VMs. Note that this is not really secure design (yet) basically all VMs can access the pulseaudio TCP service. Signed-off-by: Jon Sahlberg <[email protected]>
- Loading branch information
1 parent
9efdb7b
commit 58f9b35
Showing
12 changed files
with
339 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,6 @@ | |
productId = "46a6"; | ||
} | ||
]; | ||
|
||
audio.pciDevices = []; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,116 @@ | ||
# Copyright 2022-2024 TII (SSRC) and the Ghaf contributors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
{ | ||
config, | ||
lib, | ||
... | ||
}: let | ||
configHost = config; | ||
vmName = "audio-vm"; | ||
macAddress = "02:00:00:03:03:03"; | ||
audiovmBaseConfiguration = { | ||
imports = [ | ||
(import ./common/vm-networking.nix {inherit vmName macAddress;}) | ||
({ | ||
lib, | ||
pkgs, | ||
... | ||
}: { | ||
ghaf = { | ||
users.accounts.enable = lib.mkDefault configHost.ghaf.users.accounts.enable; | ||
profiles.debug.enable = lib.mkDefault configHost.ghaf.profiles.debug.enable; | ||
|
||
development = { | ||
ssh.daemon.enable = lib.mkDefault configHost.ghaf.development.ssh.daemon.enable; | ||
debug.tools.enable = lib.mkDefault configHost.ghaf.development.debug.tools.enable; | ||
nix-setup.enable = lib.mkDefault configHost.ghaf.development.nix-setup.enable; | ||
}; | ||
systemd = { | ||
enable = true; | ||
withName = "audiovm-systemd"; | ||
withNss = true; | ||
withResolved = true; | ||
withTimesyncd = true; | ||
withDebug = configHost.ghaf.profiles.debug.enable; | ||
}; | ||
}; | ||
|
||
environment = { | ||
systemPackages = [ | ||
pkgs.pulseaudio | ||
pkgs.pamixer | ||
pkgs.pipewire | ||
]; | ||
}; | ||
|
||
system.stateVersion = lib.trivial.release; | ||
|
||
nixpkgs = { | ||
buildPlatform.system = configHost.nixpkgs.buildPlatform.system; | ||
hostPlatform.system = configHost.nixpkgs.hostPlatform.system; | ||
}; | ||
|
||
microvm = { | ||
optimize.enable = true; | ||
vcpu = 1; | ||
mem = 256; | ||
hypervisor = "qemu"; | ||
shares = [ | ||
{ | ||
tag = "ro-store"; | ||
source = "/nix/store"; | ||
mountPoint = "/nix/.ro-store"; | ||
} | ||
]; | ||
writableStoreOverlay = lib.mkIf config.ghaf.development.debug.tools.enable "/nix/.rw-store"; | ||
qemu = { | ||
machine = | ||
{ | ||
# Use the same machine type as the host | ||
x86_64-linux = "q35"; | ||
aarch64-linux = "virt"; | ||
} | ||
.${configHost.nixpkgs.hostPlatform.system}; | ||
}; | ||
}; | ||
|
||
imports = [ | ||
../../../common | ||
]; | ||
|
||
# Fixed IP-address for debugging subnet | ||
systemd.network.networks."10-ethint0".addresses = [ | ||
{ | ||
addressConfig.Address = "192.168.101.5/24"; | ||
} | ||
]; | ||
}) | ||
]; | ||
}; | ||
cfg = config.ghaf.virtualization.microvm.audiovm; | ||
in { | ||
options.ghaf.virtualization.microvm.audiovm = { | ||
enable = lib.mkEnableOption "AudioVM"; | ||
|
||
extraModules = lib.mkOption { | ||
description = '' | ||
List of additional modules to be imported and evaluated as part of | ||
AudioVM's NixOS configuration. | ||
''; | ||
default = []; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable { | ||
microvm.vms."${vmName}" = { | ||
autostart = true; | ||
config = | ||
audiovmBaseConfiguration | ||
// { | ||
imports = | ||
audiovmBaseConfiguration.imports | ||
++ cfg.extraModules; | ||
}; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.