feat(Zephyrus): Added podman config
This commit is contained in:
parent
c1c601da96
commit
8282466524
1 changed files with 19 additions and 8 deletions
|
@ -41,14 +41,15 @@
|
|||
services.power-profiles-daemon.enable = true;
|
||||
|
||||
# Programs
|
||||
environment.systemPackages = [
|
||||
pkgs.git
|
||||
pkgs.wget
|
||||
pkgs.ncdu
|
||||
pkgs.neofetch
|
||||
pkgs.bottom
|
||||
pkgs.htop
|
||||
pkgs.iwgtk
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
wget
|
||||
ncdu
|
||||
neofetch
|
||||
bottom
|
||||
htop
|
||||
iwgtk
|
||||
podman-compose
|
||||
];
|
||||
|
||||
# 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
|
||||
users.groups.gaspard = {
|
||||
name = "gaspard";
|
||||
|
|
Loading…
Reference in a new issue