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 | |
| parent | 474e883ac7e1326bd47f07135b17e59a421669ff (diff) | |
Added docker configuration to system in virtualisation.nix
| -rw-r--r-- | system/default.nix | 1 | ||||
| -rw-r--r-- | system/virtualisation.nix | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/system/default.nix b/system/default.nix index 5022caf..bbeb009 100644 --- a/system/default.nix +++ b/system/default.nix @@ -11,6 +11,7 @@ ./services.nix ./users.nix ./encryption.nix + ./virtualisation.nix # Desktop and stylix are now configured per-rice in home/rices/*/system.nix ]; 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; + }; + }; +} |
