added podman support

This commit is contained in:
randogoth 2026-02-03 07:41:19 +02:00
parent 879754cb8d
commit fe5ec84f14
4 changed files with 34 additions and 11 deletions

View file

@ -1,9 +1,19 @@
{ lib, pkgs, ... }:
{
users.groups = {
docker = {};
podman = {};
};
users.users.admin = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
extraGroups = [
"wheel"
"networkmanager"
"podman"
"docker"
];
hashedPassword = "$6$HrwFoHtYRwiTZsYo$gKNOvkQhjalczOLgoTXvVu1MaihYP4BdBnVpWkdoAf.5MAiV2mMPRibYyGv9ti1Q63AhGK7n4wOPjAU0O74mK0";
};