This commit is contained in:
2023-07-05 00:40:34 +02:00
parent 809e0d5b75
commit 61ea6fc08c
6 changed files with 17 additions and 10 deletions

View File

@@ -4,5 +4,5 @@
systemd.targets.hibernate.enable = false;
systemd.targets.hybrid-sleep.enable = false;
services.xserver.displayManager.gdm.autoSuspend = true;
services.xserver.displayManager.gdm.autoSuspend = false;
}

View File

@@ -1,8 +1,15 @@
{ pkgs, ... }:
{
virtualisation.podman.enable = true;
virtualisation.podman.dockerCompat = true; # alias docker to podman
virtualisation.oci-containers.backend = "podman"; # default
environment.systemPackages = with pkgs; [
#podman-compose
podman-tui
];
# Required for containers under podman-compose to be able to talk to each other.
#virtualisation.defaultNetwork.settings.dns_enabled = true;