mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-05-13 15:51:09 +02:00
set up some more projects
This commit is contained in:
parent
a202d76b0e
commit
35b90a7e4f
2 changed files with 24 additions and 5 deletions
|
@ -81,6 +81,9 @@
|
||||||
"WIFI@DB" = {
|
"WIFI@DB" = {
|
||||||
authProtocols = [ "NONE" ];
|
authProtocols = [ "NONE" ];
|
||||||
};
|
};
|
||||||
|
"WIFIonICE" = {
|
||||||
|
authProtocols = [ "NONE" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue