Compare commits

...

2 commits

Author SHA1 Message Date
GaspardCulis
67ac3864fd chore(pi4): Added more system packages 2024-11-20 08:17:47 +01:00
GaspardCulis
2e0e4709fc feat(pi4): Enable podman 2024-11-20 08:08:17 +01:00

View file

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