nfs: init

This commit is contained in:
Rouven Seifert 2024-06-22 16:27:54 +02:00
parent bff20285d2
commit 97a9bbce42
5 changed files with 56 additions and 8 deletions

View file

@ -1,14 +1,9 @@
{ pkgs, ... }:
{
virtualisation = {
docker = {
rootless = {
enable = true;
setSocketVariable = true;
daemon.settings = {
iptables = false;
};
};
podman = {
enable = true;
defaultNetwork.settings.dns_enabled = true;
};
libvirtd = {
enable = true;
@ -27,5 +22,6 @@
programs.virt-manager.enable = true;
environment.systemPackages = with pkgs; [
virt-viewer
podman-compose
];
}