Skip to content

Commit

Permalink
feat(virtualisation): add virtiofsd for supporting virtiofs
Browse files Browse the repository at this point in the history
  • Loading branch information
misumisumi committed Nov 11, 2024
1 parent 92931e6 commit fb456ba
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 4 additions & 1 deletion apps/system/virtualisation/incus/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{ user, ... }:
{ pkgs, user, ... }:
{
environment.systemPackages = with pkgs; [
virtiofsd
];
users.groups = {
incus-admin.members = [
"root"
Expand Down
5 changes: 3 additions & 2 deletions apps/system/virtualisation/libvirt/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
];
};
environment.systemPackages = with pkgs; [
win-virtio
virt-manager
dmidecode # Show BIOS info
virt-manager
virtiofsd
win-virtio
];
virtualisation = {
libvirtd = {
Expand Down
5 changes: 4 additions & 1 deletion apps/system/virtualisation/lxd/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{ user, ... }:
{ pkgs, user, ... }:
{
environment.systemPackages = with pkgs; [
virtiofsd
];
users.groups = {
lxd.members = [
"root"
Expand Down

0 comments on commit fb456ba

Please sign in to comment.