(silicium/system) switch back to docker (from podman)

This commit is contained in:
Laureηt 2024-01-13 17:18:25 +01:00
parent 5895a66911
commit e7bc043b88
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI
3 changed files with 9 additions and 8 deletions

View file

@ -12,8 +12,8 @@
}))
borgbackup # backup
dconf # required by home-manager
distrobox # podman wrapper
podman-compose # "docker" compose
distrobox # docker utils
docker-compose # docker compose
duf # replacement for df
feh # image viewer
gnome.nautilus # file explorer

View file

@ -1,11 +1,12 @@
{...}: {
virtualisation.podman = {
virtualisation.docker = {
enable = true;
dockerCompat = true;
dockerSocket.enable = true;
defaultNetwork.settings.dns_enabled =
true; # required by networks in compose
storageDriver = "btrfs";
enableOnBoot = false;
autoPrune.enable = true;
};
# docker users
users.users.laurent.extraGroups = ["docker"];
}

View file

@ -7,7 +7,7 @@
users.laurent = {
isNormalUser = true;
initialPassword = "laurent";
extraGroups = ["wheel" "video" "docker"];
extraGroups = ["wheel" "video"];
shell = pkgs.zsh;
};
};