sgx: use real docker

Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
Harald Hoyer 2024-03-08 14:10:25 +01:00
parent 162da63f38
commit 8f27b0fde4
2 changed files with 5 additions and 2 deletions

View file

@ -15,7 +15,7 @@ in
enable = true; enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement # Create a `docker` alias for podman, to use it as a drop-in replacement
dockerCompat = true; dockerCompat = lib.mkDefault true;
# For Nixos version > 22.11 # For Nixos version > 22.11
defaultNetwork.settings = { dns_enabled = true; }; defaultNetwork.settings = { dns_enabled = true; };

View file

@ -19,6 +19,9 @@ with lib.plusultra;
user.extraGroups = [ "docker" "sgx" ]; user.extraGroups = [ "docker" "sgx" ];
}; };
virtualisation.docker.enable = true;
virtualisation.podman.dockerCompat = false;
system.autoUpgrade = { system.autoUpgrade = {
enable = true; enable = true;
operation = "boot"; operation = "boot";
@ -30,7 +33,7 @@ with lib.plusultra;
networking.wireless.enable = false; # Enables wireless support via wpa_supplicant. networking.wireless.enable = false; # Enables wireless support via wpa_supplicant.
services.aesmd.enable = true; # services.aesmd.enable = true;
powerManagement.cpuFreqGovernor = "ondemand"; powerManagement.cpuFreqGovernor = "ondemand";