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;
|
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";
|
||||||
|
|
Loading…
Reference in a new issue