diff options
| author | Natasha Moongrave <natasha@256phi.eu> | 2026-05-12 09:42:38 +0200 |
|---|---|---|
| committer | Natasha Moongrave <natasha@256phi.eu> | 2026-05-12 09:42:38 +0200 |
| commit | 5b8e66b7f24b3657b97baba893c8bea381aea696 (patch) | |
| tree | 15e453c2518aad53d5723dca84372ca3c15eb4d4 /system/virtualisation.nix | |
| parent | 474e883ac7e1326bd47f07135b17e59a421669ff (diff) | |
Added docker configuration to system in virtualisation.nix
Diffstat (limited to 'system/virtualisation.nix')
| -rw-r--r-- | system/virtualisation.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/system/virtualisation.nix b/system/virtualisation.nix new file mode 100644 index 0000000..8f76b0a --- /dev/null +++ b/system/virtualisation.nix @@ -0,0 +1,10 @@ +{...}: { + virtualisation.docker = { + enable = true; + storageDriver = "btrfs"; + rootless = { + enable = true; + setSocketVariable = true; + }; + }; +} |
