aboutsummaryrefslogtreecommitdiff
path: root/system/virtualisation.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/virtualisation.nix')
-rw-r--r--system/virtualisation.nix10
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;
+ };
+ };
+}