diff options
author | Alan Pearce | 2024-06-25 06:57:57 +0200 |
---|---|---|
committer | Alan Pearce | 2024-06-25 06:57:57 +0200 |
commit | 7bfa3c3cb26612bbe5e5c221c5889b9045baa072 (patch) | |
tree | b32b7d1a7bc02225a815adb26ef89b6fca3584d4 | |
parent | 87a5f74e1c17f7c2d896a938b493dbf6a35bcb5b (diff) | |
download | nixfiles-7bfa3c3cb26612bbe5e5c221c5889b9045baa072.tar.lz nixfiles-7bfa3c3cb26612bbe5e5c221c5889b9045baa072.tar.zst nixfiles-7bfa3c3cb26612bbe5e5c221c5889b9045baa072.zip |
linde: enable virtualisation policy
-rw-r--r-- | system/linde.nix | 7 |
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"; }]; + }; }; } |