declare rootless docker for 'andromache' host

This commit is contained in:
2025-11-26 18:37:11 +01:00
parent 80e74d3283
commit 68bf971992
2 changed files with 10 additions and 0 deletions

View File

@@ -37,6 +37,7 @@ in
inherit inputs;
inherit config;
})
../../modules/docker.nix
];
secrets.username = username;

9
modules/docker.nix Normal file
View File

@@ -0,0 +1,9 @@
{
virtualisation.docker = {
enable = false;
rootless = {
enable = true;
setSocketVariable = true;
};
};
}