all repos — nixfiles @ 7bfa3c3cb26612bbe5e5c221c5889b9045baa072

System and user configuration, managed by nix and home-manager

linde: enable virtualisation policy
Alan Pearce alan@alanpearce.eu
Tue, 25 Jun 2024 06:57:57 +0200
commit

7bfa3c3cb26612bbe5e5c221c5889b9045baa072

parent

87a5f74e1c17f7c2d896a938b493dbf6a35bcb5b

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M system/linde.nixsystem/linde.nix
@@ -1013,7 +1013,10 @@ users.users.laminar = {     homeMode = "770";
   };
 
-  virtualisation.containers.policy = {
-    default = [{ type = "insecureAcceptAnything"; }];
+  virtualisation.containers = {
+    enable = true;
+    policy = {
+      default = [{ type = "insecureAcceptAnything"; }];
+    };
   };
 }