[wano] feat: Add docker virtualisation

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
SindreKjelsrud 2025-09-30 10:25:39 +02:00
parent 915b350b08
commit 1954a19142

View file

@ -78,10 +78,19 @@
users.users.sid = {
isNormalUser = true;
description = "sid";
extraGroups = [ "networkmanager" "wheel" ];
extraGroups = [ "networkmanager" "wheel" "docker"];
packages = with pkgs; [];
};
# enable docker
virtualisation.docker.enable = true;
# use docker without Root access (Rootless docker)
virtualisation.docker.rootless = {
enable = true;
setSocketVariable = true;
};
# Home Manager
home-manager = {
extraSpecialArgs = { inherit inputs; };