feat(Zephyrus): Added podman config

This commit is contained in:
GaspardCulis 2024-10-01 10:04:12 +02:00
parent c1c601da96
commit 8282466524

View file

@ -41,14 +41,15 @@
services.power-profiles-daemon.enable = true; services.power-profiles-daemon.enable = true;
# Programs # Programs
environment.systemPackages = [ environment.systemPackages = with pkgs; [
pkgs.git git
pkgs.wget wget
pkgs.ncdu ncdu
pkgs.neofetch neofetch
pkgs.bottom bottom
pkgs.htop htop
pkgs.iwgtk iwgtk
podman-compose
]; ];
# NVIDIA # NVIDIA
@ -78,6 +79,16 @@
}; };
}; };
#Podman
virtualisation.containers.enable = true;
virtualisation = {
podman = {
enable = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true;
};
};
# User config # User config
users.groups.gaspard = { users.groups.gaspard = {
name = "gaspard"; name = "gaspard";