set up some more projects

This commit is contained in:
Rouven Seifert 2025-05-09 14:28:47 +02:00
parent a202d76b0e
commit 35b90a7e4f
Signed by: rouven.seifert
SSH key fingerprint: SHA256:WedRxwyCvqwDG6cd16qf/fizYDK1pvN4p5bawXlnKk0
2 changed files with 24 additions and 5 deletions

View file

@ -81,6 +81,9 @@
"WIFI@DB" = { "WIFI@DB" = {
authProtocols = [ "NONE" ]; authProtocols = [ "NONE" ];
}; };
"WIFIonICE" = {
authProtocols = [ "NONE" ];
};
}; };
}; };
}; };

View file

@ -1,13 +1,13 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
virtualisation = { virtualisation = {
# podman = { podman = {
# enable = true;
# defaultNetwork.settings.dns_enabled = true;
# };
docker = {
enable = true; enable = true;
defaultNetwork.settings.dns_enabled = true;
}; };
# docker = {
# enable = true;
# };
libvirtd = { libvirtd = {
enable = true; enable = true;
qemu = { qemu = {
@ -27,4 +27,20 @@
virt-viewer virt-viewer
podman-compose podman-compose
]; ];
systemd.nspawn = {
n1 = {
networkConfig = {
Private = true;
VirtualEthernet = true;
Bridge = "br0";
};
};
n2 = {
networkConfig = {
Private = true;
VirtualEthernet = true;
Bridge = "br0";
};
};
};
} }