Enable libvirt

This commit is contained in:
Johannes Rothe 2024-03-16 23:52:53 +01:00
parent a0e00a0711
commit 79591c1362

View File

@ -162,14 +162,16 @@
config.common.default = "*"; config.common.default = "*";
}; };
programs.light.enable = true; programs = {
programs.fish.enable = true; fish.enable = true;
programs.gnupg.agent = { gnupg.agent = {
enable = true; enable = true;
pinentryFlavor = "gtk2"; pinentryFlavor = "gtk2";
enableSSHSupport = true; enableSSHSupport = true;
};
light.enable = true;
virt-manager.enable = true;
}; };
# List services that you want to enable: # List services that you want to enable:
services.resolved = { services.resolved = {
enable = true; enable = true;
@ -220,11 +222,7 @@
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?
virtualisation = { virtualisation = {
podman = { libvirtd.enable = true;
enable = true; podman.enable = true;
# Required for containers under podman-compose to be able to talk to each other.
#defaultNetwork.settings.dns_enabled = true;
};
}; };
} }