diff --git a/hosts/andromache/default.nix b/hosts/andromache/default.nix index f16dad0..4fa9ad8 100644 --- a/hosts/andromache/default.nix +++ b/hosts/andromache/default.nix @@ -37,6 +37,7 @@ in inherit inputs; inherit config; }) + ../../modules/docker.nix ]; secrets.username = username; diff --git a/modules/docker.nix b/modules/docker.nix new file mode 100644 index 0000000..5f688d8 --- /dev/null +++ b/modules/docker.nix @@ -0,0 +1,9 @@ +{ + virtualisation.docker = { + enable = false; + rootless = { + enable = true; + setSocketVariable = true; + }; + }; +}