Compare commits

..

No commits in common. "67ac3864fd77544b1fd7325b96a914c5c8d4858a" and "e29f3fe6441b21765966a4ea91cf18aeef591fe0" have entirely different histories.

View file

@ -14,12 +14,7 @@
time.timeZone = "Europe/Paris";
environment.systemPackages = with pkgs; [
podman-compose
helix
unzip
htop
ncdu
wget
git
];
@ -34,14 +29,14 @@
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHQyRXFQ6iA5p0vDuoGSHZfajiVZPAGIyqhTziM7QgBV gaspard@nixos"
];
# Podman
virtualisation = {
containers.enable = true;
oci-containers.backend = "podman";
podman = {
networking = {
interfaces."wlan0".useDHCP = true;
wireless = {
interfaces = ["wlan0"];
enable = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true;
networks = {
"TestNetwork".psk = "not_an_actual_password_leak";
};
};
};