summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorAlan Pearce2024-06-25 06:57:57 +0200
committerAlan Pearce2024-06-25 06:57:57 +0200
commit7bfa3c3cb26612bbe5e5c221c5889b9045baa072 (patch)
treeb32b7d1a7bc02225a815adb26ef89b6fca3584d4 /system
parent87a5f74e1c17f7c2d896a938b493dbf6a35bcb5b (diff)
downloadnixfiles-7bfa3c3cb26612bbe5e5c221c5889b9045baa072.tar.lz
nixfiles-7bfa3c3cb26612bbe5e5c221c5889b9045baa072.tar.zst
nixfiles-7bfa3c3cb26612bbe5e5c221c5889b9045baa072.zip
linde: enable virtualisation policy
Diffstat (limited to 'system')
-rw-r--r--system/linde.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/system/linde.nix b/system/linde.nix
index c6087db9..21cfd0e2 100644
--- a/system/linde.nix
+++ b/system/linde.nix
@@ -1013,7 +1013,10 @@ in
     homeMode = "770";
   };
 
-  virtualisation.containers.policy = {
-    default = [{ type = "insecureAcceptAnything"; }];
+  virtualisation.containers = {
+    enable = true;
+    policy = {
+      default = [{ type = "insecureAcceptAnything"; }];
+    };
   };
 }