sopp: podman
This commit is contained in:
parent
51575e020e
commit
ad6bd43099
|
@ -10,6 +10,7 @@
|
||||||
../../hardware/opengl-intel.nix
|
../../hardware/opengl-intel.nix
|
||||||
../../profiles/auto-upgrade.nix
|
../../profiles/auto-upgrade.nix
|
||||||
../../profiles/sshd.nix
|
../../profiles/sshd.nix
|
||||||
|
../../profiles/podman.nix
|
||||||
|
|
||||||
../../users # home-manager
|
../../users # home-manager
|
||||||
../../users/pbsds
|
../../users/pbsds
|
||||||
|
@ -28,11 +29,6 @@
|
||||||
|
|
||||||
services.thermald.enable = true;
|
services.thermald.enable = true;
|
||||||
|
|
||||||
# Virtualization
|
|
||||||
#virtualisation.podman.enable = true;
|
|
||||||
#virtualisation.podman.dockerCompat = true; # alias docker to podman
|
|
||||||
#virtualisation.oci-containers.backend = "podman"; # default
|
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
/** /
|
/** /
|
||||||
|
|
|
@ -48,11 +48,6 @@
|
||||||
|
|
||||||
services.thermald.enable = true;
|
services.thermald.enable = true;
|
||||||
|
|
||||||
# Virtualization
|
|
||||||
#virtualisation.podman.enable = true;
|
|
||||||
#virtualisation.podman.dockerCompat = true; # alias docker to podman
|
|
||||||
#virtualisation.oci-containers.backend = "podman"; # default
|
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
../../hardware/gpu/intel.nix
|
../../hardware/gpu/intel.nix
|
||||||
../../profiles/auto-upgrade.nix
|
../../profiles/auto-upgrade.nix
|
||||||
../../profiles/sshd.nix
|
../../profiles/sshd.nix
|
||||||
|
../../profiles/podman.nix
|
||||||
|
|
||||||
../../users # home-manager
|
../../users # home-manager
|
||||||
../../users/pbsds
|
../../users/pbsds
|
||||||
|
@ -100,11 +101,6 @@
|
||||||
|
|
||||||
services.thermald.enable = true;
|
services.thermald.enable = true;
|
||||||
|
|
||||||
# Virtualization
|
|
||||||
virtualisation.podman.enable = true;
|
|
||||||
virtualisation.podman.dockerCompat = true; # alias docker to podman
|
|
||||||
virtualisation.oci-containers.backend = "podman"; # default
|
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
#networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
|
|
|
@ -55,11 +55,6 @@
|
||||||
|
|
||||||
services.thermald.enable = true;
|
services.thermald.enable = true;
|
||||||
|
|
||||||
# Virtualization
|
|
||||||
#virtualisation.podman.enable = true;
|
|
||||||
#virtualisation.podman.dockerCompat = true; # alias docker to podman
|
|
||||||
#virtualisation.oci-containers.backend = "podman"; # default
|
|
||||||
|
|
||||||
# Networking
|
# Networking
|
||||||
/**/
|
/**/
|
||||||
networking.networkmanager.enable = true;
|
networking.networkmanager.enable = true;
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
virtualisation.podman.enable = true;
|
||||||
|
virtualisation.podman.dockerCompat = true; # alias docker to podman
|
||||||
|
virtualisation.oci-containers.backend = "podman"; # default
|
||||||
|
|
||||||
|
# Required for containers under podman-compose to be able to talk to each other.
|
||||||
|
#virtualisation.defaultNetwork.settings.dns_enabled = true;
|
||||||
|
|
||||||
|
# TODO: if root-on-zfs
|
||||||
|
#virtualisation.podman.extraPackages = [ pkgs.zfs ];
|
||||||
|
}
|
Loading…
Reference in New Issue