rename
This commit is contained in:
parent
b794d397a7
commit
d94b4723d4
89 changed files with 6 additions and 10 deletions
3
systemProfiles/services/virt/distrobox.nix
Normal file
3
systemProfiles/services/virt/distrobox.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [distrobox];
|
||||
}
|
6
systemProfiles/services/virt/docker.nix
Normal file
6
systemProfiles/services/virt/docker.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = with pkgs; [docker-compose];
|
||||
virtualisation.docker = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
7
systemProfiles/services/virt/podman.nix
Normal file
7
systemProfiles/services/virt/podman.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
virtualisation.podman = {
|
||||
enable = true;
|
||||
autoPrune.enable = true;
|
||||
dockerSocket.enable = true;
|
||||
};
|
||||
}
|
6
systemProfiles/services/virt/virt-manager.nix
Normal file
6
systemProfiles/services/virt/virt-manager.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
_: {pkgs, ...}: {
|
||||
virtualisation.libvirtd.enable = true;
|
||||
programs.virt-manager.enable = true;
|
||||
boot.kernelParams = ["amd_iommu=on" "iommu=pt"];
|
||||
environment.systemPackages = [pkgs.libvirt];
|
||||
}
|
3
systemProfiles/services/virt/waydroid.nix
Normal file
3
systemProfiles/services/virt/waydroid.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
virtualisation.waydroid.enable = true;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue